rust/tests/ui/shadowed/shadowing-generic-item.rs
Kivooeo c0597fbd80 cleaned up some tests
Reverting file name weird-exprs.rs due to its historical use, recognition in community and references
2025-07-17 15:51:32 +05:00

15 lines
340 B
Rust

//! Test that generic parameters shadow structs and modules with the same name.
struct T { i: i32 }
fn f<T>() {
let t = T { i: 0 }; //~ ERROR expected struct, variant or union type, found type parameter `T`
}
mod Foo {
pub fn f() {}
}
fn g<Foo>() {
Foo::f(); //~ ERROR no function or associated item named `f`
}
fn main() {}