mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
196 B
Rust
12 lines
196 B
Rust
// run-pass
|
|
// aux-build:issue-14344-1.rs
|
|
// aux-build:issue-14344-2.rs
|
|
|
|
extern crate issue_14344_1;
|
|
extern crate issue_14344_2;
|
|
|
|
fn main() {
|
|
issue_14344_1::foo();
|
|
issue_14344_2::bar();
|
|
}
|