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

6 lines
137 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.
auto ob = handle(@0xf00f00);
2010-06-23 23:03:09 -05:00
}