]> git.proxmox.com Git - rustc.git/blob - src/test/ui/span/issue28498-reject-trait-bound.stderr
Updated version 1.19.0+dfsg1 from 'upstream/1.19.0+dfsg1'
[rustc.git] / src / test / ui / span / issue28498-reject-trait-bound.stderr
1 error[E0597]: `last_dropped` does not live long enough
2 --> $DIR/issue28498-reject-trait-bound.rs:48:1
3 |
4 44 | foo0 = Foo(0, &last_dropped);
5 | ------------ borrow occurs here
6 ...
7 48 | }
8 | ^ `last_dropped` dropped here while still borrowed
9 |
10 = note: values in a scope are dropped in the opposite order they are created
11
12 error[E0597]: `first_dropped` does not live long enough
13 --> $DIR/issue28498-reject-trait-bound.rs:48:1
14 |
15 45 | foo1 = Foo(1, &first_dropped);
16 | ------------- borrow occurs here
17 ...
18 48 | }
19 | ^ `first_dropped` dropped here while still borrowed
20 |
21 = note: values in a scope are dropped in the opposite order they are created
22
23 error: aborting due to previous error(s)
24