]> git.proxmox.com Git - rustc.git/blob - src/test/ui/span/issue28498-reject-passed-to-fn.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / span / issue28498-reject-passed-to-fn.stderr
1 error[E0597]: `first_dropped` does not live long enough
2 --> $DIR/issue28498-reject-passed-to-fn.rs:34:19
3 |
4 LL | foo1 = Foo(1, &first_dropped, Box::new(callback));
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`.