summaryrefslogtreecommitdiffstats
path: root/src/test/ui/wf/wf-in-fn-type-static.stderr
blob: 73fbb9ca670b021cfb77b75010ea08c39b4a9353 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
error[E0310]: the parameter type `T` may not live long enough
  --> $DIR/wf-in-fn-type-static.rs:13:8
   |
LL |     x: fn() -> &'static T
   |        ^^^^^^^^^^^^^^^^^^ ...so that the reference type `&'static T` does not outlive the data it points at
   |
help: consider adding an explicit lifetime bound...
   |
LL | struct Foo<T: 'static> {
   |             +++++++++

error[E0310]: the parameter type `T` may not live long enough
  --> $DIR/wf-in-fn-type-static.rs:18:8
   |
LL |     x: fn(&'static T)
   |        ^^^^^^^^^^^^^^ ...so that the reference type `&'static T` does not outlive the data it points at
   |
help: consider adding an explicit lifetime bound...
   |
LL | struct Bar<T: 'static> {
   |             +++++++++

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0310`.