mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
10 lines
140 B
Rust
10 lines
140 B
Rust
//@ run-pass
|
|
//@ aux-build:issue-18913-1.rs
|
|
//@ aux-build:issue-18913-2.rs
|
|
|
|
extern crate foo;
|
|
|
|
fn main() {
|
|
assert_eq!(foo::foo(), 1);
|
|
}
|