summary refs log tree commit diff
path: root/src/test/ui/editions/edition-imports-virtual-2015-ambiguity.rs
blob: 310bff21d1851636299fee16c2f6700e33014d96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// build-pass (FIXME(62277): could be check-pass?)
// edition:2018
// compile-flags:--extern edition_imports_2015
// aux-build:edition-imports-2015.rs

mod edition_imports_2015 {
    pub struct Path;
}

pub struct Ambiguous {}

mod check {
    pub struct Ambiguous {}

    fn check() {
        edition_imports_2015::gen_ambiguous!(); // OK
    }
}

fn main() {}