]> git.proxmox.com Git - rustc.git/blame - src/test/ui/wf/wf-in-obj-type-static.stderr
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / wf / wf-in-obj-type-static.stderr
CommitLineData
b7449926 1error[E0310]: the parameter type `T` may not live long enough
3dfed10e 2 --> $DIR/wf-in-obj-type-static.rs:14:8
b7449926 3 |
dc9dc135 4LL | x: dyn Object<&'static T>
3dfed10e 5 | ^^^^^^^^^^^^^^^^^^^^^^ ...so that the reference type `&'static T` does not outlive the data it points at
04454e1e
FG
6 |
7help: consider adding an explicit lifetime bound...
8 |
9LL | struct Foo<T: 'static> {
10 | +++++++++
b7449926
XL
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0310`.