]> git.proxmox.com Git - rustc.git/blob - tests/ui/blind/blind-item-item-shadow.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / blind / blind-item-item-shadow.rs
1 mod foo { pub mod foo { } }
2
3 use foo::foo;
4 //~^ ERROR the name `foo` is defined multiple times
5 //~| `foo` reimported here
6
7 fn main() {}