summary refs log tree commit diff
path: root/src/test/run-pass/drop-bind-thunk-args.rs
blob: 2a2d2c5e630d87ccd0d58bb23ebde51d85ffbb9e (plain)
1
2
3
4
5


fn f(x: @int) { }

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