summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/user-annotations/normalization.stderr
blob: acc3a1800f4fd8d385faa62b705c6944b8443e2a (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
26
27
28
29
error[E0597]: `a` does not live long enough
  --> $DIR/normalization.rs:10:31
   |
LL |     let a = 22;
   |         - binding `a` declared here
LL |     let _: <() as Foo>::Out = &a;
   |            ----------------   ^^ borrowed value does not live long enough
   |            |
   |            type annotation requires that `a` is borrowed for `'static`
...
LL | }
   | - `a` dropped here while still borrowed

error[E0597]: `a` does not live long enough
  --> $DIR/normalization.rs:13:40
   |
LL |     let a = 22;
   |         - binding `a` declared here
LL |     let _: <&'static () as Foo>::Out = &a;
   |            -------------------------   ^^ borrowed value does not live long enough
   |            |
   |            type annotation requires that `a` is borrowed for `'static`
...
LL | }
   | - `a` dropped here while still borrowed

error: aborting due to 2 previous errors

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