rust/src/test/run-pass/regions-mock-trans.rs
Niko Matsakis 2db4259b35 Stop inferring bot/static when types/regions are unconstrained.
Also, some other changes that came up along the way:
- add a 'blk' region for the current block.
- detect unused type/region variables.
2012-04-30 19:53:02 -07:00

45 lines
644 B
Rust

import libc, sys, unsafe;
enum arena = ();
type bcx/& = {
fcx: &fcx
};
type fcx/& = {
arena: &arena,
ccx: &ccx
};
type ccx = {
x: int
};
fn alloc(_bcx : &a.arena) -> &a.bcx unsafe {
ret unsafe::reinterpret_cast(libc::malloc(sys::size_of::<bcx/&blk>()));
}
fn h(bcx : &a.bcx) -> &a.bcx {
ret alloc(bcx.fcx.arena);
}
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);
}