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

53 lines
882 B
Rust
Raw Normal View History

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_inner(sz: uint, _align: uint) -> *() unsafe {
2012-08-01 19:30:05 -05:00
return unsafe::reinterpret_cast(libc::malloc(sz as libc::size_t));
}
fn alloc(tydesc: *()) -> *() {
unsafe {
let tydesc = tydesc as *sys::type_desc;
self.alloc_inner((*tydesc).size, (*tydesc).align)
}
}
}
fn h(bcx : &bcx) -> &bcx {
2012-08-01 19:30:05 -05:00
return 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 };
2012-08-01 19:30:05 -05:00
return g(&fcx);
}
fn main() {
let ccx = { x: 0 };
f(&ccx);
}