rust/tests/run-pass/aux_test.rs

11 lines
203 B
Rust
Raw Normal View History

// aux-build:dep.rs
2017-06-08 13:34:49 -05:00
// ignore-cross-compile
2017-06-08 13:34:49 -05:00
// TODO: The above accidentally also ignores this test against rustc even when are are not cross-compiling.
extern crate dep;
fn main() {
dep::foo();
}