2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-03-23 16:42:39 -05:00
|
|
|
enum arena = ();
|
|
|
|
|
2012-07-11 12:28:30 -05:00
|
|
|
type bcx = {
|
2012-03-23 16:42:39 -05:00
|
|
|
fcx: &fcx
|
|
|
|
};
|
|
|
|
|
2012-07-11 12:28:30 -05:00
|
|
|
type fcx = {
|
2012-03-23 16:42:39 -05:00
|
|
|
arena: &arena,
|
|
|
|
ccx: &ccx
|
|
|
|
};
|
|
|
|
|
|
|
|
type ccx = {
|
|
|
|
x: int
|
|
|
|
};
|
|
|
|
|
2013-01-23 13:43:58 -06:00
|
|
|
fn alloc(_bcx : &arena) -> &bcx {
|
|
|
|
unsafe {
|
|
|
|
return cast::reinterpret_cast(
|
|
|
|
&libc::malloc(sys::size_of::<bcx/&blk>() as libc::size_t));
|
|
|
|
}
|
2012-03-23 16:42:39 -05:00
|
|
|
}
|
|
|
|
|
2012-07-18 13:01:54 -05:00
|
|
|
fn h(bcx : &bcx) -> &bcx {
|
2012-08-01 19:30:05 -05:00
|
|
|
return alloc(bcx.fcx.arena);
|
2012-03-23 16:42:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn g(fcx : &fcx) {
|
|
|
|
let bcx = { fcx: fcx };
|
|
|
|
let bcx2 = h(&bcx);
|
2012-03-23 17:17:34 -05:00
|
|
|
unsafe {
|
2012-09-18 19:34:08 -05:00
|
|
|
libc::free(cast::reinterpret_cast(&bcx2));
|
2012-03-23 17:17:34 -05:00
|
|
|
}
|
2012-03-23 16:42:39 -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);
|
2012-03-23 16:42:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let ccx = { x: 0 };
|
|
|
|
f(&ccx);
|
|
|
|
}
|
|
|
|
|