2019-11-11 04:39:52 -06:00
|
|
|
error[E0382]: use of moved value
|
2020-08-30 13:59:56 -05:00
|
|
|
--> $DIR/copy-and-move-mixed.rs:11:19
|
2019-11-11 04:39:52 -06:00
|
|
|
|
|
|
|
|
LL | let a @ NC(b, c) = NC(C, C);
|
|
|
|
| ----------^- -------- move occurs because value has type `NC<C, C>`, which does not implement the `Copy` trait
|
|
|
|
| | |
|
|
|
|
| | value used here after move
|
|
|
|
| value moved here
|
|
|
|
|
|
|
|
error[E0382]: use of moved value
|
2020-08-30 13:59:56 -05:00
|
|
|
--> $DIR/copy-and-move-mixed.rs:14:19
|
2019-11-11 04:39:52 -06:00
|
|
|
|
|
|
|
|
LL | let a @ NC(b, c @ NC(d, e)) = NC(C, NC(C, C));
|
|
|
|
| ----------^^^^^^^^^^^^- --------------- move occurs because value has type `NC<C, NC<C, C>>`, which does not implement the `Copy` trait
|
|
|
|
| | |
|
|
|
|
| | value used here after move
|
|
|
|
| value moved here
|
|
|
|
|
|
|
|
error[E0382]: use of moved value
|
2020-08-30 13:59:56 -05:00
|
|
|
--> $DIR/copy-and-move-mixed.rs:14:29
|
2019-11-11 04:39:52 -06:00
|
|
|
|
|
|
|
|
LL | let a @ NC(b, c @ NC(d, e)) = NC(C, NC(C, C));
|
|
|
|
| ----------^-
|
|
|
|
| | |
|
|
|
|
| | value used here after move
|
|
|
|
| value moved here
|
|
|
|
|
|
|
|
|
= note: move occurs because value has type `NC<C, C>`, which does not implement the `Copy` trait
|
|
|
|
|
2020-01-18 19:47:01 -06:00
|
|
|
error: aborting due to 3 previous errors
|
2019-11-11 04:39:52 -06:00
|
|
|
|
2020-01-18 19:47:01 -06:00
|
|
|
For more information about this error, try `rustc --explain E0382`.
|