]> git.proxmox.com Git - rustc.git/blame - src/test/ui/svh/svh-change-type-static.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / svh / svh-change-type-static.rs
CommitLineData
1a4d82fc
JJ
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-static.rs
ff7c6d11 5// normalize-stderr-test: "(crate `(\w+)`:) .*" -> "$1 $$PATH_$2"
223e47cc 6
1a4d82fc
JJ
7extern crate a;
8extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
223e47cc
LB
9
10fn main() {
1a4d82fc 11 b::foo()
223e47cc 12}