23 lines
784 B
Plaintext
23 lines
784 B
Plaintext
|
error[E0261]: use of undeclared lifetime name `'a`
|
||
|
--> $DIR/where-lifetime-resolution.rs:16:34
|
||
|
|
|
||
|
LL | (for<'a> Trait1<'a>): Trait1<'a>,
|
||
|
| ^^ undeclared lifetime
|
||
|
|
||
|
error[E0316]: nested quantification of lifetimes
|
||
|
--> $DIR/where-lifetime-resolution.rs:18:13
|
||
|
|
|
||
|
LL | for<'a> for<'b> Trait2<'a, 'b>: Trait2<'a, 'b>,
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
||
|
|
||
|
error[E0261]: use of undeclared lifetime name `'b`
|
||
|
--> $DIR/where-lifetime-resolution.rs:18:48
|
||
|
|
|
||
|
LL | for<'a> for<'b> Trait2<'a, 'b>: Trait2<'a, 'b>,
|
||
|
| ^^ undeclared lifetime
|
||
|
|
||
|
error: aborting due to 3 previous errors
|
||
|
|
||
|
Some errors occurred: E0261, E0316.
|
||
|
For more information about an error, try `rustc --explain E0261`.
|