]> git.lizzy.rs Git - rust.git/blob - tests/ui/svh/svh-change-type-ret.rs
Rollup merge of #106664 - chenyukang:yukang/fix-106597-remove-lseek, r=cuviper
[rust.git] / tests / ui / svh / svh-change-type-ret.rs
1 // note that these aux-build directives must be in this order
2 // aux-build:svh-a-base.rs
3 // aux-build:svh-b.rs
4 // aux-build:svh-a-change-type-ret.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() {
11     b::foo()
12 }