]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/regions-implied-bounds-projection-gap-1.stderr
Rollup merge of #106043 - c410-f3r:moar-errors, r=petrochenkov
[rust.git] / src / test / ui / regions / regions-implied-bounds-projection-gap-1.stderr
1 error[E0309]: the parameter type `T` may not live long enough
2   --> $DIR/regions-implied-bounds-projection-gap-1.rs:16:5
3    |
4 LL |     wf::<&'x T>();
5    |     ^^^^^^^^^^^ ...so that the type `T` will meet its required lifetime bounds
6    |
7 help: consider adding an explicit lifetime bound...
8    |
9 LL | fn func<'x, T:Trait1<'x> + 'x>(t: &'x T::Foo)
10    |                          ++++
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0309`.