]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2093-infer-outlives/dont-infer-static.stderr
Rollup merge of #93813 - xldenis:public-mir-passes, r=wesleywiser
[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:10
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 note: ...that is required by this bound
10   --> $DIR/dont-infer-static.rs:10:15
11    |
12 LL | struct Bar<T: 'static> {
13    |               ^^^^^^^
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0310`.