rust/src/test/ui/borrowck/borrowck-issue-48962.stderr

24 lines
903 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0382]: use of moved value: `src`
2018-12-25 15:56:47 +00:00
--> $DIR/borrowck-issue-48962.rs:16: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
LL | src.next = None; //~ ERROR use of moved value: `src` [E0382]
| ^^^^^^^^ value used here after move
error[E0382]: use of moved value: `src`
2018-12-25 15:56:47 +00:00
--> $DIR/borrowck-issue-48962.rs:22: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
LL | src.0 = 66; //~ ERROR use of moved value: `src` [E0382]
| ^^^^^^^^^^ value used here after move
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0382`.