]> git.proxmox.com Git - rustc.git/blob - tests/ui/blind/blind-item-item-shadow.rs
bump version to 1.80.1+dfsg1-1~bpo12+pve1
[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() {}