blob: 6ecdd9f2c084dbbf0ff3dbc4d22cb3c9bb409a7e (
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()
}
|