mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
656db98bd9
CC #99430
16 lines
590 B
Plaintext
16 lines
590 B
Plaintext
error[E0597]: `tmp0` does not live long enough
|
|
--> $DIR/issue-52663-trait-object.rs:12:20
|
|
|
|
|
LL | let tmp0 = 3;
|
|
| ---- binding `tmp0` declared here
|
|
LL | let tmp1 = &tmp0;
|
|
| ^^^^^ borrowed value does not live long enough
|
|
LL | Box::new(tmp1) as Box<dyn Foo + '_>
|
|
| ----------------------------------- borrow later captured here by trait object
|
|
LL | };
|
|
| - `tmp0` dropped here while still borrowed
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|