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