8 lines
124 B
Rust
8 lines
124 B
Rust
fn main() {
|
|
let mut b = ~3;
|
|
let _x = &mut *b;
|
|
let mut y = /*move*/ b; //~ ERROR cannot move out
|
|
*y += 1;
|
|
}
|
|
|