]> git.proxmox.com Git - rustc.git/blame - src/test/ui/editions/edition-imports-virtual-2015-ambiguity.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / editions / edition-imports-virtual-2015-ambiguity.rs
CommitLineData
136023e0 1// check-pass
13cf67c4
XL
2// edition:2018
3// compile-flags:--extern edition_imports_2015
4// aux-build:edition-imports-2015.rs
5
6mod edition_imports_2015 {
7 pub struct Path;
8}
9
10pub struct Ambiguous {}
11
12mod check {
13 pub struct Ambiguous {}
14
15 fn check() {
532ac7d7 16 edition_imports_2015::gen_ambiguous!(); // OK
13cf67c4
XL
17 }
18}
19
20fn main() {}