2017-11-17 03:34:02 -06:00
|
|
|
error[E0506]: cannot assign to `x` because it is borrowed
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/maybe-initialized-drop-with-uninitialized-fragments.rs:20:5
|
2017-11-17 03:34:02 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let wrap = Wrap { p: &mut x };
|
2023-01-14 21:06:44 -06:00
|
|
|
| ------ `x` is borrowed here
|
2017-11-17 03:34:02 -06:00
|
|
|
...
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | x = 1;
|
2023-01-14 21:06:44 -06:00
|
|
|
| ^^^^^ `x` is assigned to here but it was already borrowed
|
2018-02-24 17:01:39 -06:00
|
|
|
LL | // FIXME ^ This currently errors and it should not.
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | }
|
2018-09-29 16:30:43 -05:00
|
|
|
| - borrow might be used here, when `foo` is dropped and runs the destructor for type `Foo<'_>`
|
2017-11-17 03:34:02 -06:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2017-11-17 03:34:02 -06:00
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0506`.
|