]> git.lizzy.rs Git - rust.git/blob - tests/ui/wf/wf-trait-associated-type-region.stderr
Rollup merge of #107527 - notriddle:notriddle/wcagcontrast, r=GuillaumeGomez
[rust.git] / tests / ui / wf / wf-trait-associated-type-region.stderr
1 error[E0309]: the associated type `<Self as SomeTrait<'a>>::Type1` may not live long enough
2   --> $DIR/wf-trait-associated-type-region.rs:9:18
3    |
4 LL |     type Type2 = &'a Self::Type1;
5    |                  ^^^^^^^^^^^^^^^
6    |
7    = help: consider adding an explicit lifetime bound `<Self as SomeTrait<'a>>::Type1: 'a`...
8    = note: ...so that the reference type `&'a <Self as SomeTrait<'a>>::Type1` does not outlive the data it points at
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0309`.