rust/src/test/run-pass/regions-mock-trans.rs

46 lines
665 B
Rust
Raw Normal View History

2012-09-05 14:32:05 -05:00
use libc, sys, unsafe;
enum arena = ();
type bcx = {
fcx: &fcx
};
type fcx = {
arena: &arena,
ccx: &ccx
};
type ccx = {
x: int
};
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));
}
fn h(bcx : &bcx) -> &bcx {
2012-08-01 19:30:05 -05:00
return alloc(bcx.fcx.arena);
}
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
}
}
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);
}
fn main() {
let ccx = { x: 0 };
f(&ccx);
}