rust/tests/ui/borrowck/borrowck-issue-48962.stderr

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

24 lines
815 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0382]: use of moved value: `src`
--> $DIR/borrowck-issue-48962.rs:14:5
2018-08-08 12:28:26 +00:00
|
LL | let mut src = &mut node;
| ------- move occurs because `src` has type `&mut Node`, which does not implement the `Copy` trait
2018-08-08 12:28:26 +00:00
LL | {src};
| --- value moved here
2019-03-09 12:03:44 +00:00
LL | src.next = None;
2018-08-08 12:28:26 +00:00
| ^^^^^^^^ value used here after move
error[E0382]: use of moved value: `src`
--> $DIR/borrowck-issue-48962.rs:20:5
2018-08-08 12:28:26 +00:00
|
LL | let mut src = &mut (22, 44);
| ------- move occurs because `src` has type `&mut (i32, i32)`, which does not implement the `Copy` trait
2018-08-08 12:28:26 +00:00
LL | {src};
| --- value moved here
2019-03-09 12:03:44 +00:00
LL | src.0 = 66;
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^ value used here after move
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0382`.