aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/drop-bind-thunk-args.rs
blob: 1198af40cec8afade098044e6b6f10e325a5d065 (plain) (blame)
1
2
3
4
5
6
7
8
fn f(@int x) { }

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