summaryrefslogtreecommitdiffstats
path: root/tests/ui/span/wf-method-late-bound-regions.stderr
blob: 64c2d0f1606652c4c9ca3b519b72e557e4aeac03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0597]: `pointer` does not live long enough
  --> $DIR/wf-method-late-bound-regions.rs:20:18
   |
LL |     let dangling = {
   |         -------- borrow later stored here
LL |         let pointer = Box::new(42);
   |             ------- binding `pointer` declared here
LL |         f2.xmute(&pointer)
   |                  ^^^^^^^^ borrowed value does not live long enough
LL |     };
   |     - `pointer` dropped here while still borrowed

error: aborting due to previous error

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