2022-06-05 16:33:09 +00:00
error[E0106]: missing lifetime specifiers
2020-08-10 23:42:57 +00:00
--> $DIR/missing-lt-for-hrtb.rs:2:32
|
LL | struct S<'a>(&'a dyn Fn(&X) -> &X);
2022-06-05 16:33:09 +00:00
| -- ^^ expected named lifetime parameter
| |
| expected named lifetime parameter
2020-08-10 23:42:57 +00:00
|
= help: this function's return type contains a borrowed value, but the signature does not say which one of argument 1's 2 lifetimes it is borrowed from
help: consider using the `'a` lifetime
|
2022-06-05 16:33:09 +00:00
LL | struct S<'a>(&'a dyn Fn(&X) -> &'a X<'a>);
| ++ ++++
2020-08-10 23:42:57 +00:00
2022-06-05 16:33:09 +00:00
error[E0106]: missing lifetime specifiers
--> $DIR/missing-lt-for-hrtb.rs:4:40
2020-08-10 23:42:57 +00:00
|
LL | struct V<'a>(&'a dyn for<'b> Fn(&X) -> &X);
2022-06-05 16:33:09 +00:00
| -- ^^ expected named lifetime parameter
| |
| expected named lifetime parameter
2020-08-10 23:42:57 +00:00
|
= help: this function's return type contains a borrowed value, but the signature does not say which one of argument 1's 2 lifetimes it is borrowed from
note: these named lifetimes are available to use
2022-06-05 16:33:09 +00:00
--> $DIR/missing-lt-for-hrtb.rs:4:10
2020-08-10 23:42:57 +00:00
|
LL | struct V<'a>(&'a dyn for<'b> Fn(&X) -> &X);
| ^^ ^^
2021-05-07 17:44:32 +00:00
help: consider using one of the available lifetimes here
|
2022-06-05 16:33:09 +00:00
LL | struct V<'a>(&'a dyn for<'b> Fn(&X) -> &'lifetime X<'lifetime>);
| +++++++++ +++++++++++
2020-08-10 23:42:57 +00:00
2022-06-05 16:33:09 +00:00
error: aborting due to 2 previous errors
2020-08-10 23:42:57 +00:00
For more information about this error, try `rustc --explain E0106`.