]> git.proxmox.com Git - rustc.git/blob - src/test/ui/nll/ty-outlives/projection-where-clause-env-wrong-bound.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / nll / ty-outlives / projection-where-clause-env-wrong-bound.stderr
1 error[E0309]: the associated type `<T as MyTrait<'_>>::Output` may not live long enough
2 --> $DIR/projection-where-clause-env-wrong-bound.rs:15:5
3 |
4 LL | bar::<T::Output>()
5 | ^^^^^^^^^^^^^^^^
6 |
7 = help: consider adding an explicit lifetime bound `<T as MyTrait<'_>>::Output: 'a`...
8 = note: ...so that the type `<T as MyTrait<'_>>::Output` will meet its required lifetime bounds
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0309`.