2016-01-30 07:27:12 -06:00
|
|
|
// ignore-msvc FIXME #31306
|
|
|
|
|
2014-02-24 21:45:20 -06:00
|
|
|
// note that these aux-build directives must be in this order
|
|
|
|
// aux-build:changing-crates-a1.rs
|
|
|
|
// aux-build:changing-crates-b.rs
|
|
|
|
// aux-build:changing-crates-a2.rs
|
2017-12-10 17:08:34 -06:00
|
|
|
// normalize-stderr-test: "(crate `(\w+)`:) .*" -> "$1 $$PATH_$2"
|
2014-02-24 21:45:20 -06:00
|
|
|
|
|
|
|
extern crate a;
|
|
|
|
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
|
|
|
|
|
|
|
|
fn main() {}
|