]> git.lizzy.rs Git - rust.git/blob - tests/ui/svh/changing-crates.rs
Auto merge of #106711 - albertlarsan68:use-ci-llvm-when-lld, r=jyn514
[rust.git] / tests / ui / svh / changing-crates.rs
1 // note that these aux-build directives must be in this order
2 // aux-build:changing-crates-a1.rs
3 // aux-build:changing-crates-b.rs
4 // aux-build:changing-crates-a2.rs
5 // normalize-stderr-test: "(crate `(\w+)`:) .*" -> "$1 $$PATH_$2"
6
7 extern crate a;
8 extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
9
10 fn main() {}