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