mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-03 07:13:10 +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() {}
|