]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/pub_use_mods_xcrate_exe.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / pub_use_mods_xcrate_exe.rs
index 953a99e1fd5be3f25207f09adaa5078dfa897132..ceba89523b5f9f3f8a2a208d18cdc58e8ea9d0ca 100644 (file)
@@ -1,4 +1,4 @@
-// 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.
 //
@@ -8,10 +8,11 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// xfail-fast
 // aux-build:pub_use_mods_xcrate.rs
 
-extern mod pub_use_mods_xcrate;
+#![allow(unused_imports)]
+
+extern crate pub_use_mods_xcrate;
 use pub_use_mods_xcrate::a::c;
 
 pub fn main(){}