2016-10-17 23:47:58 -05:00
|
|
|
fn main() {
|
|
|
|
enum Test {
|
2019-11-24 15:33:00 -06:00
|
|
|
Very //~ HELP missing `,`
|
|
|
|
Bad(usize) //~ HELP missing `,`
|
|
|
|
//~^ ERROR expected one of `(`, `,`, `=`, `{`, or `}`, found `Bad`
|
|
|
|
Stuff { a: usize } //~ HELP missing `,`
|
|
|
|
//~^ ERROR expected one of `,`, `=`, or `}`, found `Stuff`
|
2019-03-08 16:35:38 -06:00
|
|
|
Here
|
2019-11-24 15:33:00 -06:00
|
|
|
//~^ ERROR expected one of `,`, `=`, or `}`, found `Here`
|
2016-10-17 23:47:58 -05:00
|
|
|
}
|
|
|
|
}
|