]> git.lizzy.rs Git - rust.git/blob - src/test/ui/svh/svh-change-lit.rs
Auto merge of #57925 - fintelia:riscv-cas, r=nagisa
[rust.git] / src / test / ui / svh / svh-change-lit.rs
1 // ignore-msvc FIXME #31306
2
3 // note that these aux-build directives must be in this order
4 // aux-build:svh-a-base.rs
5 // aux-build:svh-b.rs
6 // aux-build:svh-a-change-lit.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() {
13     b::foo()
14 }