9 lines
203 B
Rust
9 lines
203 B
Rust
// error-pattern:moving out of immutable variable declared in an outer block
|
|
fn force(f: fn()) { f(); }
|
|
fn main() {
|
|
let mut x = @{x: 17, y: 2};
|
|
let y = @{x: 5, y: 5};
|
|
|
|
force({|| x <- y;});
|
|
}
|