mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
10 lines
95 B
Rust
10 lines
95 B
Rust
// aux-build:dep.rs
|
|
|
|
// ignore-cross-compile
|
|
|
|
extern crate dep;
|
|
|
|
fn main() {
|
|
dep::foo();
|
|
}
|