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