26 lines
916 B
Plaintext
26 lines
916 B
Plaintext
error[E0597]: `last_dropped` does not live long enough
|
|
--> $DIR/issue28498-reject-passed-to-fn.rs:34: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:36: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`.
|