]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/placement-new-arena.rs
auto merge of #6783 : hoelzro/rust/master, r=bstrie
[rust.git] / src / test / run-pass / placement-new-arena.rs
1 // xfail-fast
2
3 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
4 // file at the top-level directory of this distribution and at
5 // http://rust-lang.org/COPYRIGHT.
6 //
7 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10 // option. This file may not be copied, modified, or distributed
11 // except according to those terms.
12
13 extern mod extra;
14 use extra::arena;
15
16 pub fn main() {
17     let mut arena = arena::Arena();
18     let p = &mut arena;
19     let x = p.alloc(|| 4u);
20     io::print(fmt!("%u", *x));
21     assert_eq!(*x, 4u);
22 }