]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/import4.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / import4.rs
index d453306317bb78c2e4ae906d2a7e41ffe9d46837..0639d7320896bae349dad2523c4a0da69e0d5b83 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.
 //
@@ -14,7 +13,7 @@
 use zed::bar;
 
 mod zed {
-    pub fn bar() { info2!("bar"); }
+    pub fn bar() { println!("bar"); }
 }
 
-pub fn main() { let _zed = 42; bar(); }
+pub fn main() { let _zed = 42i; bar(); }