rust/tests/ui/resolve/unit-like-struct-masks-constant-7044.rs
2025-08-27 15:06:05 -04:00

6 lines
143 B
Rust

// https://github.com/rust-lang/rust/issues/7044
static X: isize = 0;
struct X; //~ ERROR the name `X` is defined multiple times
fn main() {}