rust/src/test/ui/regions/regions-close-object-into-object-5.nll.stderr
Basile Desloges b01550a718 Update tests
2018-09-01 12:58:18 +02:00

32 lines
963 B
Plaintext

error[E0310]: the parameter type `T` may not live long enough
--> $DIR/regions-close-object-into-object-5.rs:27:5
|
LL | box B(&*v) as Box<X>
| ^^^^^^^^^^
|
= help: consider adding an explicit lifetime bound `T: 'static`...
error[E0310]: the parameter type `T` may not live long enough
--> $DIR/regions-close-object-into-object-5.rs:27:9
|
LL | box B(&*v) as Box<X>
| ^^^^^^
|
= help: consider adding an explicit lifetime bound `T: 'static`...
error[E0597]: `*v` does not live long enough
--> $DIR/regions-close-object-into-object-5.rs:27:11
|
LL | box B(&*v) as Box<X>
| ^^^ borrowed value does not live long enough
...
LL | }
| - `*v` dropped here while still borrowed
|
= note: borrowed value must be valid for the static lifetime...
error: aborting due to 3 previous errors
Some errors occurred: E0310, E0597.
For more information about an error, try `rustc --explain E0310`.