2019-04-07 16:07:36 +01:00
|
|
|
error[E0309]: the associated type `<T as MyTrait<'_>>::Output` may not live long enough
|
2022-04-01 13:13:25 -04:00
|
|
|
--> $DIR/projection-where-clause-env-wrong-bound.rs:15:5
|
2019-04-07 16:07:36 +01:00
|
|
|
|
|
|
|
|
LL | bar::<T::Output>()
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider adding an explicit lifetime bound `<T as MyTrait<'_>>::Output: 'a`...
|
2022-04-24 17:04:31 +02:00
|
|
|
= note: ...so that the type `<T as MyTrait<'_>>::Output` will meet its required lifetime bounds
|
2019-04-07 16:07:36 +01:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0309`.
|