mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
9 lines
187 B
Rust
9 lines
187 B
Rust
//@ aux-build:issue-45829-a.rs
|
|
//@ aux-build:issue-45829-b.rs
|
|
|
|
extern crate issue_45829_a;
|
|
extern crate issue_45829_b as issue_45829_a;
|
|
//~^ ERROR is defined multiple times
|
|
|
|
fn main() {}
|