39d9c30a15
Remove old parser functions as well as support for old-style capture clauses. Remove remaining old-style capture clauses.
8 lines
89 B
Rust
8 lines
89 B
Rust
fn main() {
|
|
let x = 1;
|
|
let y = fn@(move x) -> int {
|
|
x
|
|
}();
|
|
}
|
|
|