]> git.lizzy.rs Git - rust.git/blobdiff - src/test/compile-fail/import-shadow-7.rs
Update compile fail tests to use isize.
[rust.git] / src / test / compile-fail / import-shadow-7.rs
index b3bac380710cda4ebed6656fd5490692cabbbc2f..34aba15b3922892d781b5b15545ec9f39115f10e 100644 (file)
 use qux::*; //~ERROR a type named `Baz` has already been imported in this module
 
 mod foo {
-    pub type Baz = int;
+    pub type Baz = isize;
 }
 
 mod bar {
-    pub type Baz = int;
+    pub type Baz = isize;
 }
 
 mod qux {