2014-05-13 04:55:44 -05:00
|
|
|
// note that these aux-build directives must be in this order
|
|
|
|
// aux-build:svh-a-base.rs
|
|
|
|
// aux-build:svh-b.rs
|
|
|
|
// aux-build:svh-a-change-trait-bound.rs
|
2017-12-10 17:08:34 -06:00
|
|
|
// normalize-stderr-test: "(crate `(\w+)`:) .*" -> "$1 $$PATH_$2"
|
2014-05-13 04:55:44 -05:00
|
|
|
|
|
|
|
extern crate a;
|
|
|
|
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
b::foo()
|
|
|
|
}
|