Files
rust/tests/ui/blind/blind-item-item-shadow.rs
2025-04-30 10:44:24 +03:00

10 lines
178 B
Rust

//@ dont-require-annotations: NOTE
mod foo { pub mod foo { } }
use foo::foo;
//~^ ERROR the name `foo` is defined multiple times
//~| NOTE `foo` reimported here
fn main() {}