rust/src/test/run-pass/bind-parameterized-args.rs

8 lines
111 B
Rust
Raw Normal View History

fn main() {
2011-07-27 07:19:39 -05:00
fn echo[T](c: int, x: vec[T]) { }
2011-07-27 07:19:39 -05:00
let y: fn(vec[int]) = bind echo(42, _);
2011-07-27 07:19:39 -05:00
y([1]);
}