rust/tests/ui/underscore-lifetime/underscore-lifetime-binders.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.8 KiB
Plaintext
Raw Normal View History

2022-06-05 11:33:09 -05: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);
| ~~
error[E0637]: `'_` cannot be used here
2018-12-25 09:56:47 -06:00
--> $DIR/underscore-lifetime-binders.rs:4:8
|
2019-03-09 06:03:44 -06:00
LL | fn foo<'_>
| ^^ `'_` is a reserved lifetime name
error[E0637]: `'_` cannot be used here
2019-05-28 13:46:13 -05:00
--> $DIR/underscore-lifetime-binders.rs:10:25
|
2019-05-28 13:46:13 -05:00
LL | fn meh() -> Box<dyn for<'_> Meh<'_>>
| ^^ `'_` is a reserved lifetime name
2018-08-08 07:28:26 -05:00
error[E0106]: missing lifetime specifier
2019-05-28 13:46:13 -05:00
--> $DIR/underscore-lifetime-binders.rs:10:33
2018-08-08 07:28:26 -05:00
|
2019-05-28 13:46:13 -05:00
LL | fn meh() -> Box<dyn for<'_> Meh<'_>>
| ^^ expected named lifetime parameter
2018-08-08 07:28:26 -05:00
|
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
2020-04-17 12:46:22 -05:00
help: consider using the `'static` lifetime
|
LL | fn meh() -> Box<dyn for<'_> Meh<'static>>
| ~~~~~~~
2018-08-08 07:28:26 -05:00
error[E0106]: missing lifetime specifier
2018-12-25 09:56:47 -06:00
--> $DIR/underscore-lifetime-binders.rs:16:35
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | fn foo2(_: &'_ u8, y: &'_ u8) -> &'_ u8 { y }
| ------ ------ ^^ expected named lifetime parameter
2018-08-08 07:28:26 -05: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-17 00:05:31 -06:00
help: consider introducing a named lifetime parameter
|
2020-01-27 16:35:20 -06:00
LL | fn foo2<'a>(_: &'a u8, y: &'a u8) -> &'a u8 { y }
| ++++ ~~ ~~ ~~
2018-08-08 07:28:26 -05:00
error: aborting due to 5 previous errors
2018-08-08 07:28:26 -05:00
Some errors have detailed explanations: E0106, E0637.
For more information about an error, try `rustc --explain E0106`.