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

6 lines
136 B
Rust
Raw Normal View History

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