rust/src/test/run-pass/leak-box-as-tydesc.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
70 B
Rust

fn leaky<T>(t: T) { }
fn main() { let x = @10; leaky::<@int>(x); }