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

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

14 lines
491 B
Text
Raw Normal View History

error[E0506]: cannot assign to `x` because it is borrowed
2018-12-25 08:56:47 -07:00
--> $DIR/maybe-initialized-drop.rs:16:5
|
2018-02-23 03:42:32 +03:00
LL | let wrap = Wrap { p: &mut x };
| ------ borrow of `x` occurs here
2019-03-09 15:03:44 +03:00
LL | x = 1;
| ^^^^^ assignment to borrowed `x` occurs here
2018-02-23 03:42:32 +03:00
LL | }
| - borrow might be used here, when `wrap` is dropped and runs the `Drop` code for type `Wrap`
error: aborting due to previous error
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0506`.