rust/src/test/compile-fail/borrowck-issue-2657-2.rs
2012-08-26 15:56:16 -07:00

10 lines
154 B
Rust

fn main() {
let x = Some(~1);
match x {
Some(ref y) => {
let _b <- *y; //~ ERROR moving out of dereference of immutable & pointer
}
_ => {}
}
}