6 lines
77 B
Rust
6 lines
77 B
Rust
|
|
|
|
fn f(x: @int) { }
|
|
|
|
fn main() { let x = @10; let ff = f(_); ff(x); ff(x); }
|