rust/tests/run-pass/aux_test.rs
2017-06-08 11:34:49 -07:00

11 lines
203 B
Rust

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