5 lines
84 B
Rust
5 lines
84 B
Rust
|
fn main() {
|
||
|
auto x = fn(int a) -> int { ret a + 1; };
|
||
|
assert (x(4) == 5);
|
||
|
}
|