]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/wf-in-obj-type-static.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / wf / wf-in-obj-type-static.stderr
1 error[E0310]: the parameter type `T` may not live long enough
2   --> $DIR/wf-in-obj-type-static.rs:24:5
3    |
4 LL | struct Foo<T> {
5    |            - help: consider adding an explicit lifetime bound `T: 'static`...
6 LL |     // needs T: 'static
7 LL |     x: Object<&'static T> //~ ERROR E0310
8    |     ^^^^^^^^^^^^^^^^^^^^^
9    |
10 note: ...so that the reference type `&'static T` does not outlive the data it points at
11   --> $DIR/wf-in-obj-type-static.rs:24:5
12    |
13 LL |     x: Object<&'static T> //~ ERROR E0310
14    |     ^^^^^^^^^^^^^^^^^^^^^
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0310`.