mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
101 lines
2.4 KiB
Text
101 lines
2.4 KiB
Text
error: Variant name ends with the enum's name
|
|
--> $DIR/enum_variants.rs:26:5
|
|
|
|
|
26 | cFoo,
|
|
| ^^^^
|
|
|
|
|
= note: `-D clippy::enum-variant-names` implied by `-D warnings`
|
|
|
|
error: Variant name starts with the enum's name
|
|
--> $DIR/enum_variants.rs:37:5
|
|
|
|
|
37 | FoodGood,
|
|
| ^^^^^^^^
|
|
|
|
error: Variant name starts with the enum's name
|
|
--> $DIR/enum_variants.rs:38:5
|
|
|
|
|
38 | FoodMiddle,
|
|
| ^^^^^^^^^^
|
|
|
|
error: Variant name starts with the enum's name
|
|
--> $DIR/enum_variants.rs:39:5
|
|
|
|
|
39 | FoodBad,
|
|
| ^^^^^^^
|
|
|
|
error: All variants have the same prefix: `Food`
|
|
--> $DIR/enum_variants.rs:36:1
|
|
|
|
|
36 | / enum Food {
|
|
37 | | FoodGood,
|
|
38 | | FoodMiddle,
|
|
39 | | FoodBad,
|
|
40 | | }
|
|
| |_^
|
|
|
|
|
= help: remove the prefixes and use full paths to the variants instead of glob imports
|
|
|
|
error: All variants have the same prefix: `CallType`
|
|
--> $DIR/enum_variants.rs:46:1
|
|
|
|
|
46 | / enum BadCallType {
|
|
47 | | CallTypeCall,
|
|
48 | | CallTypeCreate,
|
|
49 | | CallTypeDestroy,
|
|
50 | | }
|
|
| |_^
|
|
|
|
|
= help: remove the prefixes and use full paths to the variants instead of glob imports
|
|
|
|
error: All variants have the same prefix: `Constant`
|
|
--> $DIR/enum_variants.rs:57:1
|
|
|
|
|
57 | / enum Consts {
|
|
58 | | ConstantInt,
|
|
59 | | ConstantCake,
|
|
60 | | ConstantLie,
|
|
61 | | }
|
|
| |_^
|
|
|
|
|
= help: remove the prefixes and use full paths to the variants instead of glob imports
|
|
|
|
error: All variants have the same prefix: `With`
|
|
--> $DIR/enum_variants.rs:90:1
|
|
|
|
|
90 | / enum Seallll {
|
|
91 | | WithOutCake,
|
|
92 | | WithOutTea,
|
|
93 | | WithOut,
|
|
94 | | }
|
|
| |_^
|
|
|
|
|
= help: remove the prefixes and use full paths to the variants instead of glob imports
|
|
|
|
error: All variants have the same prefix: `Prefix`
|
|
--> $DIR/enum_variants.rs:96:1
|
|
|
|
|
96 | / enum NonCaps {
|
|
97 | | Prefix的,
|
|
98 | | PrefixTea,
|
|
99 | | PrefixCake,
|
|
100 | | }
|
|
| |_^
|
|
|
|
|
= help: remove the prefixes and use full paths to the variants instead of glob imports
|
|
|
|
error: All variants have the same prefix: `With`
|
|
--> $DIR/enum_variants.rs:102:1
|
|
|
|
|
102 | / pub enum PubSeall {
|
|
103 | | WithOutCake,
|
|
104 | | WithOutTea,
|
|
105 | | WithOut,
|
|
106 | | }
|
|
| |_^
|
|
|
|
|
= note: `-D clippy::pub-enum-variant-names` implied by `-D warnings`
|
|
= help: remove the prefixes and use full paths to the variants instead of glob imports
|
|
|
|
error: aborting due to 10 previous errors
|
|
|