2012-09-05 14:32:05 -05:00
|
|
|
use libc, sys, unsafe;
|
2012-03-23 16:42:39 -05:00
|
|
|
|
|
|
|
enum arena = ();
|
|
|
|
|
2012-07-11 12:28:30 -05:00
|
|
|
type bcx = {
|
2012-03-23 16:42:39 -05:00
|
|
|
fcx: &fcx
|
|
|
|
};
|
|
|
|
|
2012-07-11 12:28:30 -05:00
|
|
|
type fcx = {
|
2012-03-23 16:42:39 -05:00
|
|
|
arena: &arena,
|
|
|
|
ccx: &ccx
|
|
|
|
};
|
|
|
|
|
|
|
|
type ccx = {
|
|
|
|
x: int
|
|
|
|
};
|
|
|
|
|
2012-07-18 13:01:54 -05:00
|
|
|
fn alloc(_bcx : &arena) -> &bcx unsafe {
|
2012-08-01 19:30:05 -05:00
|
|
|
return unsafe::reinterpret_cast(
|
2012-08-29 18:00:36 -05:00
|
|
|
&libc::malloc(sys::size_of::<bcx/&blk>() as libc::size_t));
|
2012-03-23 16:42:39 -05:00
|
|
|
}
|
|
|
|
|
2012-07-18 13:01:54 -05:00
|
|
|
fn h(bcx : &bcx) -> &bcx {
|
2012-08-01 19:30:05 -05:00
|
|
|
return alloc(bcx.fcx.arena);
|
2012-03-23 16:42:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn g(fcx : &fcx) {
|
|
|
|
let bcx = { fcx: fcx };
|
|
|
|
let bcx2 = h(&bcx);
|
2012-03-23 17:17:34 -05:00
|
|
|
unsafe {
|
2012-08-29 18:00:36 -05:00
|
|
|
libc::free(unsafe::reinterpret_cast(&bcx2));
|
2012-03-23 17:17:34 -05:00
|
|
|
}
|
2012-03-23 16:42:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn f(ccx : &ccx) {
|
|
|
|
let a = arena(());
|
2012-03-23 17:05:39 -05:00
|
|
|
let fcx = { arena: &a, ccx: ccx };
|
2012-08-01 19:30:05 -05:00
|
|
|
return g(&fcx);
|
2012-03-23 16:42:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let ccx = { x: 0 };
|
|
|
|
f(&ccx);
|
|
|
|
}
|
|
|
|
|