1 // run-pass
2 // note that these aux-build directives must be in this order
3 // aux-build:svh-a-base.rs
4 // aux-build:svh-b.rs
5 // aux-build:svh-a-base.rs
6 
7 // pretty-expanded FIXME #23616
8 
9 extern crate a;
10 extern crate b;
11 
main()12 fn main() {
13     b::foo()
14 }
15