/src/test/run-pass/generic-drop-glue.rs
http://github.com/jruderman/rust · Rust · 5 lines · 2 code · 3 blank · 0 comment · 0 complexity · d3331f1c250e31fa68c57107e89514af MD5 · raw file
- fn f<T: copy>(t: T) { let t1: T = t; }
- fn main() { let x = {x: @10, y: @12}; f(x); }