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