update enum_variants test

This commit is contained in:
dswij 2021-12-22 17:04:48 +08:00 committed by Dharma Saputra Wijaya
parent c76e2d1e59
commit df2e4d17c6
2 changed files with 33 additions and 15 deletions

View File

@ -145,4 +145,10 @@ enum HIDataRequest {
DeleteUnpubHIData(String),
}
enum North {
Normal,
NoLeft,
NoRight,
}
fn main() {}

View File

@ -6,6 +6,18 @@ 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
|
@ -60,6 +72,18 @@ 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
|
@ -72,19 +96,7 @@ LL | | }
|
= 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:87:1
|
LL | / enum NonCaps {
LL | | Prefix的,
LL | | PrefixTea,
LL | | PrefixCake,
LL | | }
| |_^
|
= help: remove the prefixes and use full paths to the variants instead of glob imports
error: all variants have the same postfix: `IData`
error: all variants have the same postfix: `DataI`
--> $DIR/enum_variants.rs:136:1
|
LL | / enum IDataRequest {
@ -96,7 +108,7 @@ LL | | }
|
= help: remove the postfixes and use full paths to the variants instead of glob imports
error: all variants have the same postfix: `HIData`
error: all variants have the same postfix: `DataIH`
--> $DIR/enum_variants.rs:142:1
|
LL | / enum HIDataRequest {
@ -108,5 +120,5 @@ LL | | }
|
= help: remove the postfixes and use full paths to the variants instead of glob imports
error: aborting due to 11 previous errors
error: aborting due to 12 previous errors