]> git.proxmox.com Git - rustc.git/blame - src/test/ui/wf/wf-in-fn-type-static.stderr
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / wf / wf-in-fn-type-static.stderr
CommitLineData
b7449926 1error[E0310]: the parameter type `T` may not live long enough
3dfed10e 2 --> $DIR/wf-in-fn-type-static.rs:13:8
b7449926 3 |
532ac7d7 4LL | x: fn() -> &'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[E0310]: the parameter type `T` may not live long enough
3dfed10e 13 --> $DIR/wf-in-fn-type-static.rs:18:8
b7449926 14 |
532ac7d7 15LL | x: fn(&'static T)
3dfed10e 16 | ^^^^^^^^^^^^^^ ...so that the reference type `&'static T` does not outlive the data it points at
04454e1e
FG
17 |
18help: consider adding an explicit lifetime bound...
19 |
20LL | struct Bar<T: 'static> {
21 | +++++++++
b7449926
XL
22
23error: aborting due to 2 previous errors
24
25For more information about this error, try `rustc --explain E0310`.