2017-11-17 04:34:02 -05:00
|
|
|
error[E0506]: cannot assign to `x` because it is borrowed
|
2022-04-01 13:13:25 -04:00
|
|
|
--> $DIR/maybe-initialized-drop.rs:14:5
|
2017-11-17 04:34:02 -05:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let wrap = Wrap { p: &mut x };
|
2023-01-15 03:06:44 +00:00
|
|
|
| ------ `x` is borrowed here
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | x = 1;
|
2023-01-15 03:06:44 +00:00
|
|
|
| ^^^^^ `x` is assigned to here but it was already borrowed
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | }
|
2018-09-29 23:30:43 +02:00
|
|
|
| - borrow might be used here, when `wrap` is dropped and runs the `Drop` code for type `Wrap`
|
2017-11-17 04:34:02 -05:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2017-11-17 04:34:02 -05:00
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0506`.
|