mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 02:33:55 +00:00
13 lines
203 B
Rust
13 lines
203 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() {}
|