about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-01-06 16:16:35 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-01-06 21:26:48 -0800
commita64000820f0fc32be4d7535a9a92418a434fa4ba (patch)
tree916024d35e08f0826c20654f629ec596b5cb1f14 /src/liballoc
parent24ccb34266c93a21b4cd1bef473c56087689c079 (diff)
downloadrust-a64000820f0fc32be4d7535a9a92418a434fa4ba.tar.gz
rust-a64000820f0fc32be4d7535a9a92418a434fa4ba.zip
More test fixes
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/arc.rs2
-rw-r--r--src/liballoc/lib.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/liballoc/arc.rs b/src/liballoc/arc.rs
index e78f94f79cc..8def8ad7215 100644
--- a/src/liballoc/arc.rs
+++ b/src/liballoc/arc.rs
@@ -41,7 +41,7 @@
 //!     let five = five.clone();
 //!
 //!     Thread::spawn(move || {
-//!         println!("{}", five);
+//!         println!("{:?}", five);
 //!     });
 //! }
 //! ```
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs
index d5a814d83e4..ba6e89cdd76 100644
--- a/src/liballoc/lib.rs
+++ b/src/liballoc/lib.rs
@@ -65,7 +65,7 @@
 
 #![no_std]
 #![allow(unknown_features)]
-#![feature(lang_items, phase, unsafe_destructor)]
+#![feature(lang_items, unsafe_destructor)]
 
 #[macro_use]
 extern crate core;