2018-08-08 12:28:26 +00:00
|
|
|
error[E0261]: use of undeclared lifetime name `'a`
|
2019-05-28 18:46:13 +00:00
|
|
|
--> $DIR/where-lifetime-resolution.rs:6:38
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-05-28 18:46:13 +00:00
|
|
|
LL | (dyn for<'a> Trait1<'a>): Trait1<'a>,
|
|
|
|
| ^^ undeclared lifetime
|
2022-03-06 14:44:48 +00:00
|
|
|
|
|
|
|
|
= note: for more information on higher-ranked polymorphism, visit https://doc.rust-lang.org/nomicon/hrtb.html
|
|
|
|
help: consider making the bound lifetime-generic with a new `'a` lifetime
|
|
|
|
|
|
|
|
|
LL | (dyn for<'a> Trait1<'a>): for<'a> Trait1<'a>,
|
|
|
|
| +++++++
|
|
|
|
help: consider making the bound lifetime-generic with a new `'a` lifetime
|
|
|
|
|
|
|
|
|
LL | for<'a> (dyn for<'a> Trait1<'a>): Trait1<'a>,
|
|
|
|
| +++++++
|
|
|
|
help: consider introducing lifetime `'a` here
|
|
|
|
|
|
|
|
|
LL | fn f<'a>() where
|
|
|
|
| ++++
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0261]: use of undeclared lifetime name `'b`
|
2019-05-28 18:46:13 +00:00
|
|
|
--> $DIR/where-lifetime-resolution.rs:8:52
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-05-28 18:46:13 +00:00
|
|
|
LL | for<'a> dyn for<'b> Trait2<'a, 'b>: Trait2<'a, 'b>,
|
|
|
|
| ^^ undeclared lifetime
|
2022-03-06 14:44:48 +00:00
|
|
|
|
|
|
|
|
help: consider making the bound lifetime-generic with a new `'b` lifetime
|
|
|
|
|
|
|
|
|
LL | for<'a> dyn for<'b> Trait2<'a, 'b>: for<'b> Trait2<'a, 'b>,
|
|
|
|
| +++++++
|
|
|
|
help: consider making the bound lifetime-generic with a new `'b` lifetime
|
|
|
|
|
|
|
|
|
LL | for<'b, 'a> dyn for<'b> Trait2<'a, 'b>: Trait2<'a, 'b>,
|
|
|
|
| +++
|
|
|
|
help: consider introducing lifetime `'b` here
|
|
|
|
|
|
|
|
|
LL | fn f<'b>() where
|
|
|
|
| ++++
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2020-05-30 16:03:32 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
For more information about this error, try `rustc --explain E0261`.
|