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

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

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