rust/tests/ui/nll/maybe-initialized-drop-with-uninitialized-fragments.stderr

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

16 lines
594 B
Plaintext
Raw Normal View History

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
|
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
...
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 | }
| - 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 14:59:40 +00:00
For more information about this error, try `rustc --explain E0506`.