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