2018-10-11 14:51:44 -05:00
|
|
|
error[E0637]: `'_` cannot be used here
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/underscore-lifetime-binders.rs:4:8
|
2018-10-11 14:51:44 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | fn foo<'_>
|
2018-10-11 14:51:44 -05:00
|
|
|
| ^^ `'_` is a reserved lifetime name
|
|
|
|
|
|
|
|
error[E0637]: `'_` cannot be used here
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/underscore-lifetime-binders.rs:10:21
|
2018-10-11 14:51:44 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | fn meh() -> Box<for<'_> Meh<'_>>
|
2018-10-11 14:51:44 -05:00
|
|
|
| ^^ `'_` is a reserved lifetime name
|
|
|
|
|
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:2:17
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | struct Baz<'a>(&'_ &'a u8);
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^ expected lifetime parameter
|
|
|
|
|
|
|
|
error[E0106]: missing lifetime specifier
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/underscore-lifetime-binders.rs:10:29
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | fn meh() -> Box<for<'_> Meh<'_>>
|
2018-10-18 15:05:38 -05:00
|
|
|
| ^^ help: consider giving it a 'static lifetime: `'static`
|
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
|
|
|
|
|
|
|
|
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 }
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^ expected lifetime parameter
|
|
|
|
|
|
|
|
|
= help: this function's return type contains a borrowed value, but the signature does not say whether it is borrowed from `_` or `y`
|
|
|
|
|
2018-10-08 02:00:58 -05:00
|
|
|
error: aborting due to 5 previous errors
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
For more information about this error, try `rustc --explain E0106`.
|