]> git.proxmox.com Git - rustc.git/blob - src/test/ui/wf/wf-in-fn-type-static.stderr
New upstream version 1.43.0+dfsg1
[rustc.git] / src / test / ui / wf / wf-in-fn-type-static.stderr
1 error[E0310]: the parameter type `T` may not live long enough
2 --> $DIR/wf-in-fn-type-static.rs:13: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: fn() -> &'static T
8 | ^^^^^^^^^^^^^^^^^^^^^
9 |
10 note: ...so that the reference type `&'static T` does not outlive the data it points at
11 --> $DIR/wf-in-fn-type-static.rs:13:5
12 |
13 LL | x: fn() -> &'static T
14 | ^^^^^^^^^^^^^^^^^^^^^
15
16 error[E0310]: the parameter type `T` may not live long enough
17 --> $DIR/wf-in-fn-type-static.rs:18:5
18 |
19 LL | struct Bar<T> {
20 | - help: consider adding an explicit lifetime bound...: `T: 'static`
21 LL | // needs T: Copy
22 LL | x: fn(&'static T)
23 | ^^^^^^^^^^^^^^^^^
24 |
25 note: ...so that the reference type `&'static T` does not outlive the data it points at
26 --> $DIR/wf-in-fn-type-static.rs:18:5
27 |
28 LL | x: fn(&'static T)
29 | ^^^^^^^^^^^^^^^^^
30
31 error: aborting due to 2 previous errors
32
33 For more information about this error, try `rustc --explain E0310`.