6 lines
126 B
Rust
6 lines
126 B
Rust
// error-pattern:variable 'x' captured more than once
|
|
fn main() {
|
|
let x = 5;
|
|
let y = fn~[move x, x]() -> int { x };
|
|
}
|