10 lines
238 B
Rust
10 lines
238 B
Rust
fn main() {
|
|
let x = Some(~1);
|
|
match x { //~ NOTE loan of immutable local variable granted here
|
|
Some(ref _y) => {
|
|
let _a = move x; //~ ERROR moving out of immutable local variable prohibited due to outstanding loan
|
|
}
|
|
_ => {}
|
|
}
|
|
}
|