]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/placement-new-arena.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / placement-new-arena.rs
index 1dafbca22f72d66b4c3182f8a892ef42cc1009eb..1ca7e5aa3c47ad8836f7dac16ea9507c7d15570f 100644 (file)
@@ -1,6 +1,5 @@
-// xfail-fast
 
-// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
+// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
 // file at the top-level directory of this distribution and at
 // http://rust-lang.org/COPYRIGHT.
 //
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-extern mod extra;
-use extra::arena;
+extern crate arena;
+use arena::Arena;
 
 pub fn main() {
-    let mut arena = arena::Arena();
+    let mut arena = Arena::new();
     let p = &mut arena;
     let x = p.alloc(|| 4u);
-    io::print(fmt!("%u", *x));
+    println!("{}", *x);
     assert_eq!(*x, 4u);
 }