8 lines
88 B
Rust
8 lines
88 B
Rust
fn f(@int x) { }
|
|
|
|
fn main() {
|
|
auto x = @10;
|
|
auto ff = bind f(_);
|
|
ff(x);
|
|
ff(x);
|
|
} |