mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
9 lines
132 B
Rust
9 lines
132 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() {}
|