2017-11-17 03:34:02 -06:00
|
|
|
error[E0506]: cannot assign to `x` because it is borrowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/maybe-initialized-drop.rs:16:5
|
2017-11-17 03:34:02 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let wrap = Wrap { p: &mut x };
|
2017-11-17 03:34:02 -06:00
|
|
|
| ------ borrow of `x` occurs here
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | x = 1; //~ ERROR cannot assign to `x` because it is borrowed [E0506]
|
2017-11-17 03:34:02 -06:00
|
|
|
| ^^^^^ assignment to borrowed `x` occurs here
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | }
|
2018-09-29 16:30:43 -05:00
|
|
|
| - borrow might be used here, when `wrap` is dropped and runs the `Drop` code for type `Wrap`
|
2017-11-17 03:34:02 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0506`.
|