2019-07-27 00:54:25 +03:00
|
|
|
// run-pass
|
2014-05-13 11:55:44 +02:00
|
|
|
// note that these aux-build directives must be in this order
|
|
|
|
// aux-build:svh-a-base.rs
|
|
|
|
// aux-build:svh-b.rs
|
2017-12-07 12:29:53 +01:00
|
|
|
// aux-build:svh-a-base.rs
|
2014-05-13 11:55:44 +02:00
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-05-13 11:55:44 +02:00
|
|
|
extern crate a;
|
|
|
|
extern crate b;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
b::foo()
|
|
|
|
}
|