rust/src/test/compile-fail/bind-by-move-no-sub-bindings.rs

10 lines
235 B
Rust
Raw Normal View History

struct X { x: (); drop { error!("destructor runs"); } }
fn main() {
2012-08-20 14:23:37 -05:00
let x = Some(X { x: () });
match move x {
2012-08-20 14:23:37 -05:00
Some(move _y @ ref _z) => { }, //~ ERROR cannot bind by-move with sub-bindings
None => fail
}
}