summaryrefslogtreecommitdiffstats
path: root/tests/ui/imports/extern-with-ambiguous-2.rs
blob: 68c623c1c4a65f9dac8b25595797781dd7b9649c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// check-pass
// edition: 2021
// aux-build: extern-with-ambiguous-2-extern.rs

extern crate extern_with_ambiguous_2_extern;

mod s {
    pub mod error {
        use extern_with_ambiguous_2_extern::*;
    }
}
use s::*;
use extern_with_ambiguous_2_extern::*;
use error::*;

fn main() {}