Files
rust/tests/ui/error-codes/E0428.rs
2025-04-30 10:44:24 +03:00

8 lines
144 B
Rust

//@ dont-require-annotations: NOTE
struct Bar; //~ NOTE previous definition of the type `Bar` here
struct Bar; //~ ERROR E0428
fn main () {
}