2022-06-05 18:33:09 +02:00
error[E0106]: missing lifetime specifier
--> $DIR/underscore-lifetime-binders.rs:2:17
|
LL | struct Baz<'a>(&'_ &'a u8);
| ^^ expected named lifetime parameter
|
help: consider using the `'a` lifetime
|
LL | struct Baz<'a>(&'a &'a u8);
| ~~
2018-10-11 15:51:44 -04:00
error[E0637]: `'_` cannot be used here
2018-12-25 08:56:47 -07:00
--> $DIR/underscore-lifetime-binders.rs:4:8
2018-10-11 15:51:44 -04:00
|
2019-03-09 15:03:44 +03:00
LL | fn foo<'_>
2018-10-11 15:51:44 -04:00
| ^^ `'_` is a reserved lifetime name
error[E0637]: `'_` cannot be used here
2019-05-28 14:46:13 -04:00
--> $DIR/underscore-lifetime-binders.rs:10:25
2018-10-11 15:51:44 -04:00
|
2019-05-28 14:46:13 -04:00
LL | fn meh() -> Box<dyn for<'_> Meh<'_>>
| ^^ `'_` is a reserved lifetime name
2018-10-11 15:51:44 -04:00
2018-08-08 14:28:26 +02:00
error[E0106]: missing lifetime specifier
2019-05-28 14:46:13 -04:00
--> $DIR/underscore-lifetime-binders.rs:10:33
2018-08-08 14:28:26 +02:00
|
2019-05-28 14:46:13 -04:00
LL | fn meh() -> Box<dyn for<'_> Meh<'_>>
2020-04-16 21:33:42 -07:00
| ^^ expected named lifetime parameter
2018-08-08 14:28:26 +02:00
|
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
2023-11-14 20:36:49 +00:00
help: consider using the `'static` lifetime, but this is uncommon unless you're returning a borrowed value from a `const` or a `static`, or if you will only have owned values
2020-04-16 21:33:42 -07:00
|
LL | fn meh() -> Box<dyn for<'_> Meh<'static>>
2021-06-21 19:07:19 -07:00
| ~~~~~~~
2018-08-08 14:28:26 +02:00
error[E0106]: missing lifetime specifier
2018-12-25 08:56:47 -07:00
--> $DIR/underscore-lifetime-binders.rs:16:35
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | fn foo2(_: &'_ u8, y: &'_ u8) -> &'_ u8 { y }
2020-01-27 16:13:45 -08:00
| ------ ------ ^^ expected named lifetime parameter
2018-08-08 14:28:26 +02:00
|
2020-01-27 16:13:45 -08:00
= help: this function's return type contains a borrowed value, but the signature does not say whether it is borrowed from argument 1 or `y`
2020-01-16 22:05:31 -08:00
help: consider introducing a named lifetime parameter
2020-01-15 18:35:48 -08:00
|
2020-01-27 14:35:20 -08:00
LL | fn foo2<'a>(_: &'a u8, y: &'a u8) -> &'a u8 { y }
2021-08-12 18:54:29 +00:00
| ++++ ~~ ~~ ~~
2018-08-08 14:28:26 +02:00
2024-03-19 20:58:37 +00:00
error: aborting due to 5 previous errors
2018-08-08 14:28:26 +02:00
2020-02-07 12:44:31 -05:00
Some errors have detailed explanations: E0106, E0637.
For more information about an error, try `rustc --explain E0106`.