]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/import3.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / import3.rs
index dedb2f2a99d5e985106a3d40d8a4fdd3d5b85d87..4a3358488d8a3ae92d05fbd3b81bcbbb450f090c 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 baz::zed;
-use zed::bar;
+use baz::zed::bar;
 
 mod baz {
     pub mod zed {
-        pub fn bar() { debug!("bar2"); }
+        pub fn bar() { println!("bar2"); }
     }
 }