summaryrefslogtreecommitdiffstats
path: root/tests/ui/svh/changing-crates.rs
blob: 66298e06ed6279ae1ff967185770c5c7783edcef (plain)
1
2
3
4
5
6
7
8
9
10
// 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
// normalize-stderr-test: "(crate `(\w+)`:) .*" -> "$1 $$PATH_$2"

extern crate a;
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on

fn main() {}