rust-clippy/tests/ui-toml/enum_variant_names/enum_variant_names.rs

16 lines
182 B
Rust

enum Foo {
AFoo,
BFoo,
CFoo,
DFoo,
}
enum Foo2 {
//~^ ERROR: all variants have the same postfix
AFoo,
BFoo,
CFoo,
DFoo,
EFoo,
}
fn main() {}