]> git.proxmox.com Git - rustc.git/blame - src/test/ui/rfc-2093-infer-outlives/dont-infer-static.stderr
New upstream version 1.29.0+dfsg1
[rustc.git] / src / test / ui / rfc-2093-infer-outlives / dont-infer-static.stderr
CommitLineData
8faf50e0
XL
1error[E0310]: the parameter type `U` may not live long enough
2 --> $DIR/dont-infer-static.rs:22:5
3 |
4LL | struct Foo<U> {
5 | - help: consider adding an explicit lifetime bound `U: 'static`...
6LL | bar: Bar<U> //~ ERROR 22:5: 22:16: the parameter type `U` may not live long enough [E0310]
7 | ^^^^^^^^^^^
8 |
9note: ...so that the type `U` will meet its required lifetime bounds
10 --> $DIR/dont-infer-static.rs:22:5
11 |
12LL | bar: Bar<U> //~ ERROR 22:5: 22:16: the parameter type `U` may not live long enough [E0310]
13 | ^^^^^^^^^^^
14
15error: aborting due to previous error
16
17For more information about this error, try `rustc --explain E0310`.