]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/import-shadow-6.rs
Imported Upstream version 1.4.0+dfsg1
[rustc.git] / src / test / compile-fail / import-shadow-6.rs
index fa3b75c70f0b68a75250c93b5c50638e20257bf6..0f3d54d5fe3d8778d4f15dd09a8bbd75c99ca115 100644 (file)
@@ -12,8 +12,8 @@
 
 #![no_implicit_prelude]
 
-use qux::*;
-use foo::*; //~ERROR a type named `Baz` has already been imported in this module
+use qux::*; //~ERROR a type named `Baz` has already been imported in this module
+use foo::*;
 
 mod foo {
     pub type Baz = isize;