rust/src/test/run-pass/obj-drop.rs

9 lines
145 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
fn main() {
2011-07-27 07:19:39 -05:00
obj handle(i: @int) { }
// This just tests whether the obj leaks its box state members.
2011-07-27 07:19:39 -05:00
let ob = handle(@0xf00f00);
}