rust/src/test/ui/nll/issue-52663-trait-object.stderr

14 lines
480 B
Plaintext
Raw Normal View History

error[E0597]: `tmp0` does not live long enough
--> $DIR/issue-52663-trait-object.rs:12:20
|
LL | let tmp1 = &tmp0;
| ^^^^^ borrowed value does not live long enough
2019-05-28 13:46:13 -05:00
LL | box tmp1 as Box<dyn Foo + '_>
2021-09-16 17:04:02 -05:00
| ----------------------------- borrow later used here
LL | };
| - `tmp0` dropped here while still borrowed
error: aborting due to previous error
For more information about this error, try `rustc --explain E0597`.