11 lines
203 B
Rust
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();
|
|
}
|