summary refs log tree commit diff
path: root/src/test/ui/span/issue28498-reject-passed-to-fn.stderr
blob: 2a5e34290ec92fb2f1e195ecee8265b37adf911b (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
error[E0597]: `last_dropped` does not live long enough
  --> $DIR/issue28498-reject-passed-to-fn.rs:44:20
   |
LL |     foo0 = Foo(0, &last_dropped, Box::new(callback));
   |                    ^^^^^^^^^^^^ borrowed value does not live long enough
...
LL | }
   | - `last_dropped` dropped here while still borrowed
   |
   = note: values in a scope are dropped in the opposite order they are created

error[E0597]: `first_dropped` does not live long enough
  --> $DIR/issue28498-reject-passed-to-fn.rs:46:20
   |
LL |     foo1 = Foo(1, &first_dropped, Box::new(callback));
   |                    ^^^^^^^^^^^^^ borrowed value does not live long enough
...
LL | }
   | - `first_dropped` 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

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