rust/src/test/run-pass/drop-parametric-closure-with-bound-box.rs
Marijn Haverbeke fc6b7c8b38 Reformat for new mode syntax, step 1
Long lines were fixed in a very crude way, as I'll be following up
with another reformat in a bit.
2011-09-12 12:04:14 +02:00

6 lines
84 B
Rust

fn f<T>(i: @int, t: T) { }
fn main() { let x = bind f::<char>(@0xdeafbeef, _); }