2020-04-16 21:33:42 -07:00
|
|
|
error[E0106]: missing lifetime specifiers
|
|
|
|
--> $DIR/missing-lifetime-specifier.rs:18:44
|
|
|
|
|
|
|
|
|
LL | static a: RefCell<HashMap<i32, Vec<Vec<Foo>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^ expected 2 lifetime parameters
|
|
|
|
|
|
|
|
|
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
|
2020-04-17 10:46:22 -07:00
|
|
|
help: consider using the `'static` lifetime
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static a: RefCell<HashMap<i32, Vec<Vec<Foo<'static, 'static>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0106]: missing lifetime specifiers
|
|
|
|
--> $DIR/missing-lifetime-specifier.rs:18:44
|
|
|
|
|
|
|
|
|
LL | static a: RefCell<HashMap<i32, Vec<Vec<Foo>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^ expected 2 lifetime parameters
|
|
|
|
|
|
|
|
|
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
|
2020-04-17 10:46:22 -07:00
|
|
|
help: consider using the `'static` lifetime
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static a: RefCell<HashMap<i32, Vec<Vec<Foo<'static, 'static>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0106]: missing lifetime specifier
|
|
|
|
--> $DIR/missing-lifetime-specifier.rs:23:44
|
|
|
|
|
|
|
|
|
LL | static b: RefCell<HashMap<i32, Vec<Vec<&Bar>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^ expected named lifetime parameter
|
|
|
|
|
|
|
|
|
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
|
2020-04-17 10:46:22 -07:00
|
|
|
help: consider using the `'static` lifetime
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static b: RefCell<HashMap<i32, Vec<Vec<&'static Bar>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error[E0106]: missing lifetime specifiers
|
|
|
|
--> $DIR/missing-lifetime-specifier.rs:23:45
|
|
|
|
|
|
|
|
|
LL | static b: RefCell<HashMap<i32, Vec<Vec<&Bar>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^ expected 2 lifetime parameters
|
|
|
|
|
|
|
|
|
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
|
2020-04-17 10:46:22 -07:00
|
|
|
help: consider using the `'static` lifetime
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static b: RefCell<HashMap<i32, Vec<Vec<&Bar<'static, 'static>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0106]: missing lifetime specifier
|
|
|
|
--> $DIR/missing-lifetime-specifier.rs:23:44
|
|
|
|
|
|
|
|
|
LL | static b: RefCell<HashMap<i32, Vec<Vec<&Bar>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^ expected named lifetime parameter
|
|
|
|
|
|
|
|
|
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
|
2020-04-17 10:46:22 -07:00
|
|
|
help: consider using the `'static` lifetime
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static b: RefCell<HashMap<i32, Vec<Vec<&'static Bar>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error[E0106]: missing lifetime specifiers
|
|
|
|
--> $DIR/missing-lifetime-specifier.rs:23:45
|
|
|
|
|
|
|
|
|
LL | static b: RefCell<HashMap<i32, Vec<Vec<&Bar>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^ expected 2 lifetime parameters
|
|
|
|
|
|
|
|
|
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
|
2020-04-17 10:46:22 -07:00
|
|
|
help: consider using the `'static` lifetime
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static b: RefCell<HashMap<i32, Vec<Vec<&Bar<'static, 'static>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0106]: missing lifetime specifiers
|
2020-08-13 18:30:00 -07:00
|
|
|
--> $DIR/missing-lifetime-specifier.rs:30:48
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static c: RefCell<HashMap<i32, Vec<Vec<Qux<i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^ expected 2 lifetime parameters
|
|
|
|
|
|
|
|
|
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
|
2020-04-17 10:46:22 -07:00
|
|
|
help: consider using the `'static` lifetime
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static c: RefCell<HashMap<i32, Vec<Vec<Qux<'static, 'static, i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0106]: missing lifetime specifiers
|
2020-08-13 18:30:00 -07:00
|
|
|
--> $DIR/missing-lifetime-specifier.rs:30:48
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static c: RefCell<HashMap<i32, Vec<Vec<Qux<i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^ expected 2 lifetime parameters
|
|
|
|
|
|
|
|
|
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
|
2020-04-17 10:46:22 -07:00
|
|
|
help: consider using the `'static` lifetime
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static c: RefCell<HashMap<i32, Vec<Vec<Qux<'static, 'static, i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0106]: missing lifetime specifier
|
2020-08-13 18:30:00 -07:00
|
|
|
--> $DIR/missing-lifetime-specifier.rs:35:44
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static d: RefCell<HashMap<i32, Vec<Vec<&Tar<i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^ expected named lifetime parameter
|
|
|
|
|
|
|
|
|
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
|
2020-04-17 10:46:22 -07:00
|
|
|
help: consider using the `'static` lifetime
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static d: RefCell<HashMap<i32, Vec<Vec<&'static Tar<i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error[E0106]: missing lifetime specifiers
|
2020-08-13 18:30:00 -07:00
|
|
|
--> $DIR/missing-lifetime-specifier.rs:35:49
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static d: RefCell<HashMap<i32, Vec<Vec<&Tar<i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^ expected 2 lifetime parameters
|
|
|
|
|
|
|
|
|
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
|
2020-04-17 10:46:22 -07:00
|
|
|
help: consider using the `'static` lifetime
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static d: RefCell<HashMap<i32, Vec<Vec<&Tar<'static, 'static, i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0106]: missing lifetime specifier
|
2020-08-13 18:30:00 -07:00
|
|
|
--> $DIR/missing-lifetime-specifier.rs:35:44
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static d: RefCell<HashMap<i32, Vec<Vec<&Tar<i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^ expected named lifetime parameter
|
|
|
|
|
|
|
|
|
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
|
2020-04-17 10:46:22 -07:00
|
|
|
help: consider using the `'static` lifetime
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static d: RefCell<HashMap<i32, Vec<Vec<&'static Tar<i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error[E0106]: missing lifetime specifiers
|
2020-08-13 18:30:00 -07:00
|
|
|
--> $DIR/missing-lifetime-specifier.rs:35:49
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static d: RefCell<HashMap<i32, Vec<Vec<&Tar<i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^ expected 2 lifetime parameters
|
|
|
|
|
|
|
|
|
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
|
2020-04-17 10:46:22 -07:00
|
|
|
help: consider using the `'static` lifetime
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static d: RefCell<HashMap<i32, Vec<Vec<&Tar<'static, 'static, i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0106]: missing lifetime specifier
|
2020-08-13 18:30:00 -07:00
|
|
|
--> $DIR/missing-lifetime-specifier.rs:50:44
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static f: RefCell<HashMap<i32, Vec<Vec<&Tar<'static, i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^ expected named lifetime parameter
|
|
|
|
|
|
|
|
|
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
|
2020-04-17 10:46:22 -07:00
|
|
|
help: consider using the `'static` lifetime
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static f: RefCell<HashMap<i32, Vec<Vec<&'static Tar<'static, i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error[E0106]: missing lifetime specifier
|
2020-08-13 18:30:00 -07:00
|
|
|
--> $DIR/missing-lifetime-specifier.rs:50:44
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static f: RefCell<HashMap<i32, Vec<Vec<&Tar<'static, i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^ expected named lifetime parameter
|
|
|
|
|
|
|
|
|
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
|
2020-04-17 10:46:22 -07:00
|
|
|
help: consider using the `'static` lifetime
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static f: RefCell<HashMap<i32, Vec<Vec<&'static Tar<'static, i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error[E0107]: wrong number of lifetime arguments: expected 2, found 1
|
2020-08-13 18:30:00 -07:00
|
|
|
--> $DIR/missing-lifetime-specifier.rs:43:44
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static e: RefCell<HashMap<i32, Vec<Vec<Qux<'static, i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^ expected 2 lifetime arguments
|
|
|
|
|
|
|
|
error[E0107]: wrong number of lifetime arguments: expected 2, found 1
|
2020-08-13 18:30:00 -07:00
|
|
|
--> $DIR/missing-lifetime-specifier.rs:43:44
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static e: RefCell<HashMap<i32, Vec<Vec<Qux<'static, i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^ expected 2 lifetime arguments
|
|
|
|
|
|
|
|
error[E0107]: wrong number of lifetime arguments: expected 2, found 1
|
2020-08-13 18:30:00 -07:00
|
|
|
--> $DIR/missing-lifetime-specifier.rs:43:44
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static e: RefCell<HashMap<i32, Vec<Vec<Qux<'static, i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^ expected 2 lifetime arguments
|
|
|
|
|
|
|
|
error[E0107]: wrong number of lifetime arguments: expected 2, found 1
|
2020-08-13 18:30:00 -07:00
|
|
|
--> $DIR/missing-lifetime-specifier.rs:43:44
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static e: RefCell<HashMap<i32, Vec<Vec<Qux<'static, i32>>>>> = RefCell::new(HashMap::new());
|
|
|
|
| ^^^^^^^^^^^^^^^^^ expected 2 lifetime arguments
|
|
|
|
|
|
|
|
error[E0107]: wrong number of lifetime arguments: expected 2, found 1
|
2020-08-13 18:30:00 -07:00
|
|
|
--> $DIR/missing-lifetime-specifier.rs:50:45
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static f: RefCell<HashMap<i32, Vec<Vec<&Tar<'static, i32>>>>> = RefCell::new(HashMap::new());
|
2020-04-17 12:26:32 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^ expected 2 lifetime arguments
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
error[E0107]: wrong number of lifetime arguments: expected 2, found 1
|
2020-08-13 18:30:00 -07:00
|
|
|
--> $DIR/missing-lifetime-specifier.rs:50:45
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static f: RefCell<HashMap<i32, Vec<Vec<&Tar<'static, i32>>>>> = RefCell::new(HashMap::new());
|
2020-04-17 12:26:32 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^ expected 2 lifetime arguments
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
error[E0107]: wrong number of lifetime arguments: expected 2, found 1
|
2020-08-13 18:30:00 -07:00
|
|
|
--> $DIR/missing-lifetime-specifier.rs:50:45
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static f: RefCell<HashMap<i32, Vec<Vec<&Tar<'static, i32>>>>> = RefCell::new(HashMap::new());
|
2020-04-17 12:26:32 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^ expected 2 lifetime arguments
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
error[E0107]: wrong number of lifetime arguments: expected 2, found 1
|
2020-08-13 18:30:00 -07:00
|
|
|
--> $DIR/missing-lifetime-specifier.rs:50:45
|
2020-04-16 21:33:42 -07:00
|
|
|
|
|
|
|
|
LL | static f: RefCell<HashMap<i32, Vec<Vec<&Tar<'static, i32>>>>> = RefCell::new(HashMap::new());
|
2020-04-17 12:26:32 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^ expected 2 lifetime arguments
|
2020-04-16 21:33:42 -07:00
|
|
|
|
2020-08-13 18:30:00 -07:00
|
|
|
error: aborting due to 22 previous errors
|
2020-04-16 21:33:42 -07:00
|
|
|
|
2020-08-13 18:30:00 -07:00
|
|
|
Some errors have detailed explanations: E0106, E0107.
|
2020-04-16 21:33:42 -07:00
|
|
|
For more information about an error, try `rustc --explain E0106`.
|