blob: 8f4e178ccfe174fc7b620c5eedb91a2c2f4f115a [file] [log] [blame]
enum Foo {
AFoo,
BFoo,
CFoo,
DFoo,
}
enum Foo2 {
//~^ ERROR: all variants have the same postfix
AFoo,
BFoo,
CFoo,
DFoo,
EFoo,
}
fn main() {}