]> git.lizzy.rs Git - rust.git/blobdiff - src/test/compile-fail/import-shadow-1.rs
Update compile fail tests to use isize.
[rust.git] / src / test / compile-fail / import-shadow-1.rs
index eac5a98140f8903b11e146153794e9adff603cbc..503fa4eca527bbc9c1b1639076d43d79837af58f 100644 (file)
 use bar::*; //~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 {