rust/src/test/compile-fail/borrowck-issue-2657-2.rs

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
}
_ => {}
}
}