]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/import6.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / import6.rs
index 296b0c605d625a65c7d5924168d9026ea37990af..802dfc1f2ed148062d09dec487da44a48d71af87 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.
 
+#![allow(unused_imports)]
+
 use foo::zed;
 use bar::baz;
+
 mod foo {
     pub mod zed {
-        pub fn baz() { info!("baz"); }
+        pub fn baz() { println!("baz"); }
     }
 }
 mod bar {