rust/src/test/run-pass/drop-parametric-closure-with-bound-box.rs

6 lines
81 B
Rust
Raw Normal View History

fn f[T](@int i, &T t) {}
2010-10-14 14:41:48 -05:00
fn main() {
auto x = bind f[char](@0xdeafbeef, _);
}