]> git.proxmox.com Git - rustc.git/blame - src/test/ui/wf/wf-impl-associated-type-region.stderr
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / wf / wf-impl-associated-type-region.stderr
CommitLineData
b7449926 1error[E0309]: the parameter type `T` may not live long enough
94222f64 2 --> $DIR/wf-impl-associated-type-region.rs:10:16
b7449926 3 |
532ac7d7 4LL | type Bar = &'a T;
94222f64 5 | ^^^^^ ...so that the reference type `&'a T` does not outlive the data it points at
04454e1e
FG
6 |
7help: consider adding an explicit lifetime bound...
8 |
9LL | impl<'a, T: 'a> Foo<'a> for T {
10 | ++++
b7449926
XL
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0309`.