mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
9 lines
130 B
Rust
9 lines
130 B
Rust
// aux-build:m1.rs
|
|
// aux-build:m2.rs
|
|
|
|
|
|
extern crate m1;
|
|
extern crate m2 as m1; //~ ERROR is defined multiple times
|
|
|
|
fn main() {}
|