blob: 50b51c6f3971cb3e36422711307dcac4d7d3ca95 [file] [log] [blame]
error[E0382]: use of moved value: `node`
--> $DIR/moves-based-on-type-cyclic-types-issue-4821.rs:23:13
|
LL | Some(right) => consume(right),
| ----- value moved here
...
LL | consume(node) + r //~ ERROR use of partially moved value: `node`
| ^^^^ value used here after move
|
= note: move occurs because value has type `std::boxed::Box<List>`, which does not implement the `Copy` trait
error: aborting due to previous error
For more information about this error, try `rustc --explain E0382`.