]> git.lizzy.rs Git - rust.git/blob - tests/ui/wf/wf-impl-associated-type-region.stderr
Don't resolve type var roots in point_at_expr_source_of_inferred_type
[rust.git] / tests / ui / wf / wf-impl-associated-type-region.stderr
1 error[E0309]: the parameter type `T` may not live long enough
2   --> $DIR/wf-impl-associated-type-region.rs:10:16
3    |
4 LL |     type Bar = &'a T;
5    |                ^^^^^ ...so that the reference type `&'a T` does not outlive the data it points at
6    |
7 help: consider adding an explicit lifetime bound...
8    |
9 LL | impl<'a, T: 'a> Foo<'a> for T {
10    |           ++++
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0309`.