]> git.proxmox.com Git - rustc.git/blob - src/test/ui/span/issue28498-reject-trait-bound.stderr
New upstream version 1.36.0+dfsg1
[rustc.git] / src / test / ui / span / issue28498-reject-trait-bound.stderr
1 error[E0597]: `first_dropped` does not live long enough
2 --> $DIR/issue28498-reject-trait-bound.rs:35:19
3 |
4 LL | foo1 = Foo(1, &first_dropped);
5 | ^^^^^^^^^^^^^^ borrowed value does not live long enough
6 ...
7 LL | }
8 | -
9 | |
10 | `first_dropped` dropped here while still borrowed
11 | borrow might be used here, when `foo1` is dropped and runs the `Drop` code for type `Foo`
12 |
13 = note: values in a scope are dropped in the opposite order they are defined
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0597`.