about summary refs log tree commit diff
path: root/src/test/ui/parser/recover-enum.rs
blob: 331bfff84f106a778f7f68cf6bfc5aa2d345b6c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    enum Test {
        Very
        //~^ ERROR missing comma
        Bad(usize)
        //~^ ERROR missing comma
        Stuff { a: usize }
        //~^ ERROR missing comma
        Here
    }
}