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

5 lines
81 B
Rust
Raw Normal View History

2011-07-27 14:19:39 +02:00
fn f(x: @int) { }
2011-07-27 14:19:39 +02:00
fn main() { let x = @10; let ff = bind f(_); ff(x); ff(x); }