rust/tests/run-pass/aux_test.rs
Scott Olson 0591683b73 Stop before trans so I can test non-x86_64 targets.
I had problems when it tried to link outputs for targets other than my
host.

This re-breaks tests with auxiliary builds. I'm not sure what to do
about those right now.
2016-12-16 23:47:43 -08:00

10 lines
178 B
Rust

// aux-build:dep.rs
// FIXME: Auxiliary builds are currently broken.
// extern crate dep;
fn main() {
// FIXME: Auxiliary builds are currently broken.
// dep::foo();
}