2018-10-05 23:31:33 +02:00
|
|
|
error[E0597]: `tmp0` does not live long enough
|
2019-04-07 16:07:36 +01:00
|
|
|
--> $DIR/issue-52663-trait-object.rs:12:20
|
2018-10-05 23:31:33 +02:00
|
|
|
|
|
2023-01-15 03:06:44 +00:00
|
|
|
LL | let tmp0 = 3;
|
|
|
|
| ---- binding `tmp0` declared here
|
2018-10-05 23:31:33 +02:00
|
|
|
LL | let tmp1 = &tmp0;
|
|
|
|
| ^^^^^ borrowed value does not live long enough
|
2021-08-25 02:39:40 +02:00
|
|
|
LL | Box::new(tmp1) as Box<dyn Foo + '_>
|
|
|
|
| ----------------------------------- borrow later captured here by trait object
|
2018-10-05 23:31:33 +02:00
|
|
|
LL | };
|
|
|
|
| - `tmp0` dropped here while still borrowed
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|