rust/src/test/run-pass/resource-cycle.rs

62 lines
1.5 KiB
Rust
Raw Normal View History

// Don't leak the unique pointers
2012-08-15 20:46:55 -05:00
struct r {
2012-09-06 21:40:15 -05:00
v: *int,
drop unsafe {
2012-08-22 19:24:52 -05:00
debug!("r's dtor: self = %x, self.v = %x, self.v's value = %x",
2012-08-29 18:00:36 -05:00
unsafe::reinterpret_cast::<*r, uint>(&ptr::addr_of(self)),
unsafe::reinterpret_cast::<**int, uint>(&ptr::addr_of(self.v)),
unsafe::reinterpret_cast::<*int, uint>(&self.v));
let v2: ~int = unsafe::reinterpret_cast(&self.v); }
}
2012-09-05 17:58:43 -05:00
fn r(v: *int) -> r unsafe {
r {
v: v
}
}
enum t = {
2012-08-20 14:23:37 -05:00
mut next: Option<@t>,
r: r
};
fn main() unsafe {
let i1 = ~0;
2012-08-29 18:00:36 -05:00
let i1p = unsafe::reinterpret_cast(&i1);
unsafe::forget(i1);
let i2 = ~0;
2012-08-29 18:00:36 -05:00
let i2p = unsafe::reinterpret_cast(&i2);
unsafe::forget(i2);
let x1 = @t({
2012-08-20 14:23:37 -05:00
mut next: None,
r: {
let rs = r(i1p);
2012-08-22 19:24:52 -05:00
debug!("r = %x",
2012-08-29 18:00:36 -05:00
unsafe::reinterpret_cast::<*r, uint>(&ptr::addr_of(rs)));
rs }
});
2012-08-22 19:24:52 -05:00
debug!("x1 = %x, x1.r = %x",
2012-08-29 18:00:36 -05:00
unsafe::reinterpret_cast::<@t, uint>(&x1),
unsafe::reinterpret_cast::<*r, uint>(&ptr::addr_of(x1.r)));
let x2 = @t({
2012-08-20 14:23:37 -05:00
mut next: None,
r: {
let rs = r(i2p);
2012-08-22 19:24:52 -05:00
debug!("r2 = %x",
2012-08-29 18:00:36 -05:00
unsafe::reinterpret_cast::<*r, uint>(&ptr::addr_of(rs)));
rs
}
});
2012-08-22 19:24:52 -05:00
debug!("x2 = %x, x2.r = %x",
2012-08-29 18:00:36 -05:00
unsafe::reinterpret_cast::<@t, uint>(&x2),
unsafe::reinterpret_cast::<*r, uint>(&ptr::addr_of(x2.r)));
2012-08-20 14:23:37 -05:00
x1.next = Some(x2);
x2.next = Some(x1);
}