summaryrefslogtreecommitdiffstats
path: root/tests/ui/span/regions-close-over-type-parameter-2.stderr
blob: 2e584d9a884f174f5f743cb2828c3c06a4e3a8fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error[E0597]: `tmp0` does not live long enough
  --> $DIR/regions-close-over-type-parameter-2.rs:23:20
   |
LL |         let tmp1 = &tmp0;
   |                    ^^^^^ borrowed value does not live long enough
LL |         repeater3(tmp1)
   |         --------------- borrow later captured here by trait object
LL |     };
   |     - `tmp0` dropped here while still borrowed

error: aborting due to previous error

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