summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/removed-syntax-field-semicolon.rs
blob: ac28e21ae032953b9bf837eda75598b51a6b708b (plain)
1
2
3
4
5
6
struct S {
    bar: ();
    //~^ ERROR expected `,`, or `}`, found `;`
}

fn main() {}