]> git.proxmox.com Git - rustc.git/blob - src/test/ui/svh/svh-change-type-ret.rs
Update unsuspicious file list
[rustc.git] / src / test / 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 }