rust/src/test/ui/nll/maybe-initialized-drop-implicit-fragment-drop.stderr

16 lines
622 B
Plaintext
Raw Normal View History

error[E0506]: cannot assign to `x` because it is borrowed
2018-12-25 09:56:47 -06:00
--> $DIR/maybe-initialized-drop-implicit-fragment-drop.rs:20:5
|
2018-02-22 18:42:32 -06:00
LL | let wrap = Wrap { p: &mut x };
| ------ borrow of `x` occurs here
...
2019-03-09 06:03:44 -06:00
LL | x = 1;
| ^^^^^ assignment to borrowed `x` occurs here
2018-02-24 17:01:39 -06:00
LL | // FIXME ^ Should not error in the future with implicit dtors, only manually implemented ones
2018-02-22 18:42:32 -06:00
LL | }
| - borrow might be used here, when `foo` is dropped and runs the destructor for type `Foo<'_>`
error: aborting due to previous error
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0506`.