rust/src/test/run-pass/obj-drop.rs
2011-07-27 15:54:33 +02:00

8 lines
144 B
Rust

fn main() {
obj handle(i: @int) { }
// This just tests whether the obj leaks its box state members.
let ob = handle(@0xf00f00);
}