summary refs log tree commit diff
path: root/src/test/ui/span/issue-29106.stderr
blob: f146028c2fcf190988f016ba0ac119688076e315 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error[E0597]: `x` does not live long enough
  --> $DIR/issue-29106.rs:27:5
   |
26 |         y = Arc::new(Foo(&x));
   |                           - borrow occurs here
27 |     } //~ ERROR `x` does not live long enough
   |     ^ `x` dropped here while still borrowed
   |
   = note: values in a scope are dropped in the opposite order they are created

error[E0597]: `x` does not live long enough
  --> $DIR/issue-29106.rs:33:5
   |
32 |         y = Rc::new(Foo(&x));
   |                          - borrow occurs here
33 |     } //~ ERROR `x` does not live long enough
   |     ^ `x` dropped here while still borrowed
   |
   = note: values in a scope are dropped in the opposite order they are created

error: aborting due to 2 previous errors