2018-10-05 16:31:33 -05:00
|
|
|
error[E0597]: `tmp0` does not live long enough
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-52663-trait-object.rs:13:20
|
2018-10-05 16:31:33 -05:00
|
|
|
|
|
|
|
|
LL | let tmp1 = &tmp0;
|
|
|
|
| ^^^^^ borrowed value does not live long enough
|
|
|
|
LL | box tmp1 as Box<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`.
|