5 lines
No EOL
81 B
Rust
5 lines
No EOL
81 B
Rust
|
|
|
|
fn f(x: @int) { }
|
|
|
|
fn main() { let x = @10; let ff = bind f(_); ff(x); ff(x); } |