]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/wf-in-fn-type-static.stderr
try to avoid `FnCtxt` during wf
[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:8
3    |
4 LL |     x: fn() -> &'static T
5    |        ^^^^^^^^^^^^^^^^^^
6    |
7    = help: consider adding an explicit lifetime bound `T: 'static`...
8    = note: ...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:8
12    |
13 LL |     x: fn(&'static T)
14    |        ^^^^^^^^^^^^^^
15    |
16    = help: consider adding an explicit lifetime bound `T: 'static`...
17    = note: ...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`.