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

47 lines
689 B
Rust
Raw Normal View History

import libc, sys, unsafe;
enum arena = ();
2012-04-19 22:05:50 -05:00
type bcx/& = {
fcx: &fcx
};
2012-04-19 22:05:50 -05:00
type fcx/& = {
arena: &arena,
ccx: &ccx
};
type ccx = {
x: int
};
impl arena for arena {
fn alloc(sz: uint, _align: uint) -> *() unsafe {
ret unsafe::reinterpret_cast(libc::malloc(sz as libc::size_t));
}
}
fn h(bcx : &bcx) -> &bcx {
ret new(*bcx.fcx.arena) { fcx: bcx.fcx };
}
fn g(fcx : &fcx) {
let bcx = { fcx: fcx };
let bcx2 = h(&bcx);
unsafe {
libc::free(unsafe::reinterpret_cast(bcx2));
}
}
fn f(ccx : &ccx) {
let a = arena(());
let fcx = { arena: &a, ccx: ccx };
ret g(&fcx);
}
fn main() {
let ccx = { x: 0 };
f(&ccx);
}