2018-08-12 18:58:08 +02:00
|
|
|
error[E0597]: `v` does not live long enough
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/dropck-union.rs:39:18
|
2018-08-12 18:58:08 +02:00
|
|
|
|
|
|
|
|
LL | v.0.set(Some(&v)); //~ ERROR: `v` does not live long enough
|
|
|
|
| ^^ borrowed value does not live long enough
|
|
|
|
LL | }
|
|
|
|
| -
|
|
|
|
| |
|
|
|
|
| `v` dropped here while still borrowed
|
2018-09-29 23:30:43 +02:00
|
|
|
| borrow might be used here, when `v` is dropped and runs the `Drop` code for type `Wrap`
|
2018-08-12 18:58:08 +02:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|