]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/wf-in-obj-type-static.stderr
Auto merge of #106143 - matthiaskrgr:rollup-3kpy1dc, r=matthiaskrgr
[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:14:8
3    |
4 LL |     x: dyn Object<&'static T>
5    |        ^^^^^^^^^^^^^^^^^^^^^^ ...so that the reference type `&'static T` does not outlive the data it points at
6    |
7 help: consider adding an explicit lifetime bound...
8    |
9 LL | struct Foo<T: 'static> {
10    |             +++++++++
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0310`.