summaryrefslogtreecommitdiffstats
path: root/tests/ui/imports/auxiliary/extern-with-ambiguous-2-extern.rs
blob: 37899676892f3e8c23d9b3270c860138e85463d8 (plain)
1
2
3
4
5
6
7
8
9
mod a {
    pub mod error {}
}
pub use a::*;

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