rust/tests/ui/imports/auxiliary/extern-with-ambiguous-2-ext...

10 lines
91 B
Rust

mod a {
pub mod error {}
}
pub use a::*;
mod b {
pub mod error {}
}
pub use b::*;