]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/regions-mock-trans.rs
rustdoc: Replace no-pretty-expanded with pretty-expanded
[rust.git] / src / test / run-pass / regions-mock-trans.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // pretty-expanded FIXME #23616
12
13 #![feature(libc)]
14
15 extern crate libc;
16 use std::mem;
17
18 struct arena(());
19
20 struct Bcx<'a> {
21     fcx: &'a Fcx<'a>
22 }
23
24 struct Fcx<'a> {
25     arena: &'a arena,
26     ccx: &'a Ccx
27 }
28
29 struct Ccx {
30     x: int
31 }
32
33 fn alloc<'a>(_bcx : &'a arena) -> &'a Bcx<'a> {
34     unsafe {
35         mem::transmute(libc::malloc(mem::size_of::<Bcx<'a>>()
36             as libc::size_t))
37     }
38 }
39
40 fn h<'a>(bcx : &'a Bcx<'a>) -> &'a Bcx<'a> {
41     return alloc(bcx.fcx.arena);
42 }
43
44 fn g(fcx : &Fcx) {
45     let bcx = Bcx { fcx: fcx };
46     let bcx2 = h(&bcx);
47     unsafe {
48         libc::free(mem::transmute(bcx2));
49     }
50 }
51
52 fn f(ccx : &Ccx) {
53     let a = arena(());
54     let fcx = Fcx { arena: &a, ccx: ccx };
55     return g(&fcx);
56 }
57
58 pub fn main() {
59     let ccx = Ccx { x: 0 };
60     f(&ccx);
61 }