mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
124 lines
2.9 KiB
Text
124 lines
2.9 KiB
Text
error: variant name ends with the enum's name
|
|
--> $DIR/enum_variants.rs:15:5
|
|
|
|
|
LL | cFoo,
|
|
| ^^^^
|
|
|
|
|
= note: `-D clippy::enum-variant-names` implied by `-D warnings`
|
|
|
|
error: all variants have the same prefix: `c`
|
|
--> $DIR/enum_variants.rs:14:1
|
|
|
|
|
LL | / enum Foo {
|
|
LL | | cFoo,
|
|
LL | | cBar,
|
|
LL | | cBaz,
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
= help: remove the prefixes and use full paths to the variants instead of glob imports
|
|
|
|
error: variant name starts with the enum's name
|
|
--> $DIR/enum_variants.rs:26:5
|
|
|
|
|
LL | FoodGood,
|
|
| ^^^^^^^^
|
|
|
|
error: variant name starts with the enum's name
|
|
--> $DIR/enum_variants.rs:27:5
|
|
|
|
|
LL | FoodMiddle,
|
|
| ^^^^^^^^^^
|
|
|
|
error: variant name starts with the enum's name
|
|
--> $DIR/enum_variants.rs:28:5
|
|
|
|
|
LL | FoodBad,
|
|
| ^^^^^^^
|
|
|
|
error: all variants have the same prefix: `Food`
|
|
--> $DIR/enum_variants.rs:25:1
|
|
|
|
|
LL | / enum Food {
|
|
LL | | FoodGood,
|
|
LL | | FoodMiddle,
|
|
LL | | FoodBad,
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
= 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:35:1
|
|
|
|
|
LL | / enum BadCallType {
|
|
LL | | CallTypeCall,
|
|
LL | | CallTypeCreate,
|
|
LL | | CallTypeDestroy,
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
= 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:47:1
|
|
|
|
|
LL | / enum Consts {
|
|
LL | | ConstantInt,
|
|
LL | | ConstantCake,
|
|
LL | | ConstantLie,
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
= help: remove the prefixes and use full paths to the variants instead of glob imports
|
|
|
|
error: all variants have the same prefix: `C`
|
|
--> $DIR/enum_variants.rs:59:1
|
|
|
|
|
LL | / enum Something {
|
|
LL | | CCall,
|
|
LL | | CCreate,
|
|
LL | | CCryogenize,
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
= help: remove the prefixes and use full paths to the variants instead of glob imports
|
|
|
|
error: all variants have the same prefix: `WithOut`
|
|
--> $DIR/enum_variants.rs:81:1
|
|
|
|
|
LL | / enum Seallll {
|
|
LL | | WithOutCake,
|
|
LL | | WithOutTea,
|
|
LL | | WithOut,
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
= help: remove the prefixes and use full paths to the variants instead of glob imports
|
|
|
|
error: all variants have the same postfix: `IData`
|
|
--> $DIR/enum_variants.rs:136:1
|
|
|
|
|
LL | / enum IDataRequest {
|
|
LL | | PutIData(String),
|
|
LL | | GetIData(String),
|
|
LL | | DeleteUnpubIData(String),
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
= help: remove the postfixes and use full paths to the variants instead of glob imports
|
|
|
|
error: all variants have the same postfix: `HIData`
|
|
--> $DIR/enum_variants.rs:142:1
|
|
|
|
|
LL | / enum HIDataRequest {
|
|
LL | | PutHIData(String),
|
|
LL | | GetHIData(String),
|
|
LL | | DeleteUnpubHIData(String),
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
= help: remove the postfixes and use full paths to the variants instead of glob imports
|
|
|
|
error: aborting due to 12 previous errors
|
|
|