summaryrefslogtreecommitdiffstats
path: root/tests/ui/svh/svh-change-lit.rs
blob: ea500711bb76933b0e5211b4e555fb4bb125701f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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-lit.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() {
    b::foo()
}