]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/unique-log.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / unique-log.rs
index 108b0f43962d2b0c2ac09aec43e9f219594efed1..05579796dab904454541400dda486cca609d4095 100644 (file)
@@ -8,9 +8,10 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-extern crate debug;
+#![allow(unknown_features)]
+#![feature(box_syntax)]
 
 pub fn main() {
     let i = box 100i;
-    println!("{:?}", i);
+    println!("{}", i);
 }