2019-11-11 04:39:52 -06:00
|
|
|
error[E0007]: cannot bind by-move with sub-bindings
|
2019-12-14 22:06:54 -06:00
|
|
|
--> $DIR/copy-and-move-mixed.rs:11:9
|
2019-11-11 04:39:52 -06:00
|
|
|
|
|
|
|
|
LL | let a @ NC(b, c) = NC(C, C);
|
|
|
|
| ^^^^^^^^^^^^ binds an already bound by-move value by moving it
|
|
|
|
|
|
|
|
error[E0007]: cannot bind by-move with sub-bindings
|
2019-12-14 22:06:54 -06:00
|
|
|
--> $DIR/copy-and-move-mixed.rs:15:9
|
2019-11-11 04:39:52 -06:00
|
|
|
|
|
|
|
|
LL | let a @ NC(b, c @ NC(d, e)) = NC(C, NC(C, C));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ binds an already bound by-move value by moving it
|
|
|
|
|
|
|
|
error[E0007]: cannot bind by-move with sub-bindings
|
2019-12-14 22:06:54 -06:00
|
|
|
--> $DIR/copy-and-move-mixed.rs:15:19
|
2019-11-11 04:39:52 -06:00
|
|
|
|
|
|
|
|
LL | let a @ NC(b, c @ NC(d, e)) = NC(C, NC(C, C));
|
|
|
|
| ^^^^^^^^^^^^ binds an already bound by-move value by moving it
|
|
|
|
|
|
|
|
error[E0382]: use of moved value
|
2019-12-14 22:06:54 -06: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
|
2019-12-14 22:06:54 -06:00
|
|
|
--> $DIR/copy-and-move-mixed.rs:15: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
|
2019-12-14 22:06:54 -06:00
|
|
|
--> $DIR/copy-and-move-mixed.rs:15: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
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
|
|
|
|
Some errors have detailed explanations: E0007, E0382.
|
|
|
|
For more information about an error, try `rustc --explain E0007`.
|