summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/local-outlives-static-via-hrtb.stderr
blob: f5c10f3ddea0ea0686342e06ab87b16a6b4d63fb (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
30
31
32
33
34
35
36
37
38
error[E0597]: `local` does not live long enough
  --> $DIR/local-outlives-static-via-hrtb.rs:24:28
   |
LL |     assert_static_via_hrtb(&local);
   |     -----------------------^^^^^^-
   |     |                      |
   |     |                      borrowed value does not live long enough
   |     argument requires that `local` is borrowed for `'static`
LL |     assert_static_via_hrtb_with_assoc_type(&&local);
LL | }
   | - `local` dropped here while still borrowed
   |
note: due to current limitations in the borrow checker, this implies a `'static` lifetime
  --> $DIR/local-outlives-static-via-hrtb.rs:15:53
   |
LL | fn assert_static_via_hrtb<G>(_: G) where for<'a> G: Outlives<'a> {}
   |                                                     ^^^^^^^^^^^^

error[E0597]: `local` does not live long enough
  --> $DIR/local-outlives-static-via-hrtb.rs:25:45
   |
LL |     assert_static_via_hrtb_with_assoc_type(&&local);
   |     ----------------------------------------^^^^^^-
   |     |                                       |
   |     |                                       borrowed value does not live long enough
   |     argument requires that `local` is borrowed for `'static`
LL | }
   | - `local` dropped here while still borrowed
   |
note: due to current limitations in the borrow checker, this implies a `'static` lifetime
  --> $DIR/local-outlives-static-via-hrtb.rs:19:20
   |
LL |     for<'a> &'a T: Reference<AssociatedType = &'a ()>,
   |                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 2 previous errors

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