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

5 lines
82 B
Rust

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