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