]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2093-infer-outlives/dont-infer-static.stderr
2bb51731583a6ffded7c220c0c825f69638b1999
[rust.git] / src / test / ui / rfc-2093-infer-outlives / dont-infer-static.stderr
1 error[E0310]: the parameter type `U` may not live long enough
2   --> $DIR/dont-infer-static.rs:8:5
3    |
4 LL | struct Foo<U> {
5    |            - help: consider adding an explicit lifetime bound...: `U: 'static`
6 LL |     bar: Bar<U>
7    |     ^^^^^^^^^^^ ...so that the type `U` will meet its required lifetime bounds
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0310`.