2018-08-08 07:28:26 -05:00
|
|
|
error[E0382]: use of moved value: `src`
|
2019-04-07 10:07:36 -05:00
|
|
|
--> $DIR/borrowck-issue-48962.rs:14:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-01-02 18:43:08 -06: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 07:28:26 -05:00
|
|
|
LL | {src};
|
|
|
|
| --- value moved here
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | src.next = None;
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^ value used here after move
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `src`
|
2019-04-07 10:07:36 -05:00
|
|
|
--> $DIR/borrowck-issue-48962.rs:20:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-01-02 18:43:08 -06: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 07:28:26 -05:00
|
|
|
LL | {src};
|
|
|
|
| --- value moved here
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | src.0 = 66;
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^^^ value used here after move
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|