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

6 lines
85 B
Rust
Raw Normal View History

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