rust/src/test/run-pass/drop-bind-thunk-args.rs

8 lines
88 B
Rust

fn f(@int x) { }
fn main() {
auto x = @10;
auto ff = bind f(_);
ff(x);
ff(x);
}