Files
rust/tests/ui/parser/removed-syntax/removed-syntax-field-semicolon.rs
2024-01-17 22:17:44 +00:00

7 lines
90 B
Rust

struct S {
bar: ();
//~^ ERROR struct fields are separated by `,`
}
fn main() {}