2018-08-08 12:28:26 +00:00
|
|
|
error[E0382]: use of moved value: `src`
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/borrowck-issue-48962.rs:14:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-01-03 00:43:08 +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`
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/borrowck-issue-48962.rs:20:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-01-03 00:43:08 +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`.
|