0591683b73
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.
10 lines
178 B
Rust
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();
|
|
}
|