]> git.lizzy.rs Git - rust.git/blob - src/test/ui/changing-crates.rs
Rollup merge of #82259 - osa1:issue82156, r=petrochenkov
[rust.git] / src / test / ui / changing-crates.rs
1 // ignore-msvc FIXME #31306
2
3 // note that these aux-build directives must be in this order
4 // aux-build:changing-crates-a1.rs
5 // aux-build:changing-crates-b.rs
6 // aux-build:changing-crates-a2.rs
7 // normalize-stderr-test: "(crate `(\w+)`:) .*" -> "$1 $$PATH_$2"
8
9 extern crate a;
10 extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
11
12 fn main() {}