8 lines
91 B
Rust
8 lines
91 B
Rust
|
fn main() {
|
||
|
let x = 1;
|
||
|
let y = fn@[move x]() -> int {
|
||
|
x
|
||
|
}();
|
||
|
}
|
||
|
|