2012-04-07 19:50:49 -05:00
|
|
|
// xfail-fast
|
2012-04-10 02:52:30 -05:00
|
|
|
// aux-build:crateresolve_calories-1.rs
|
|
|
|
// aux-build:crateresolve_calories-2.rs
|
2012-04-07 19:50:49 -05:00
|
|
|
// error-pattern:mismatched types
|
|
|
|
|
|
|
|
// These both have the same version but differ in other metadata
|
2012-04-10 02:52:30 -05:00
|
|
|
use cr6_1 (name = "crateresolve_calories", vers = "0.1", calories="100");
|
|
|
|
use cr6_2 (name = "crateresolve_calories", vers = "0.1", calories="200");
|
2012-04-07 19:50:49 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
assert cr6_1::f() == 100;
|
|
|
|
assert cr6_2::f() == 200;
|
|
|
|
}
|