]> git.proxmox.com Git - rustc.git/blobdiff - src/test/auxiliary/crateresolve7x.rs
Imported Upstream version 1.0.0+dfsg1
[rustc.git] / src / test / auxiliary / crateresolve7x.rs
index 801ace7d80492c1a2af85e2b2f91cf51edec837d..c05d292eaea47a395c115d08b5b1e6290da89061 100644 (file)
 // These both have the same version but differ in other metadata
 pub mod a {
     extern crate cr_1 (name = "crateresolve_calories", vers = "0.1", calories="100");
-    pub fn f() -> int { cr_1::f() }
+    pub fn f() -> isize { cr_1::f() }
 }
 
 pub mod b {
     extern crate cr_2 (name = "crateresolve_calories", vers = "0.1", calories="200");
-    pub fn f() -> int { cr_2::f() }
+    pub fn f() -> isize { cr_2::f() }
 }