]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/wf-in-fn-type-static.stderr
a79c446247794ad59a1fdbc56bfd1922059da488
[rust.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    |     ^^^^^^^^^^^^^^^^^^^^^ ...so that the reference type `&'static T` does not outlive the data it points at
9
10 error[E0310]: the parameter type `T` may not live long enough
11   --> $DIR/wf-in-fn-type-static.rs:18:5
12    |
13 LL | struct Bar<T> {
14    |            - help: consider adding an explicit lifetime bound...: `T: 'static`
15 LL |     // needs T: Copy
16 LL |     x: fn(&'static T)
17    |     ^^^^^^^^^^^^^^^^^ ...so that the reference type `&'static T` does not outlive the data it points at
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0310`.