]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/wf-in-obj-type-static.stderr
c0057f3c82977fd990fc09b3251108ec65239106
[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: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: dyn Object<&'static T>
8    |     ^^^^^^^^^^^^^^^^^^^^^^^^^ ...so that the reference type `&'static T` does not outlive the data it points at
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0310`.