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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
630 B
Plaintext
Raw Normal View History

error[E0506]: cannot assign to `x` because it is borrowed
--> $DIR/maybe-initialized-drop-implicit-fragment-drop.rs:17:5
|
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
...
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 ^ 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`.