mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
13 lines
200 B
Rust
13 lines
200 B
Rust
|
// edition:2018
|
||
|
// compile-flags: --extern issue_56596
|
||
|
// aux-build:issue-56596.rs
|
||
|
|
||
|
mod m {
|
||
|
pub mod issue_56596 {}
|
||
|
}
|
||
|
|
||
|
use m::*;
|
||
|
use issue_56596; //~ ERROR `issue_56596` is ambiguous
|
||
|
|
||
|
fn main() {}
|