test: Add a version of the "mock-trans" regions test case that uses impls

This commit is contained in:
Patrick Walton 2012-03-23 15:28:47 -07:00
parent b9c4dbeb33
commit c56ec7b02a
1 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,46 @@
import libc, sys, unsafe;
enum arena = ();
type bcx = {
fcx: &fcx
};
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));
}
}
fn h(bcx : &bcx) -> &bcx {
ret new(*bcx.fcx.arena) { fcx: 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);
}