mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
90 lines
1.5 KiB
Rust
90 lines
1.5 KiB
Rust
#![feature(plugin, non_ascii_idents)]
|
|
#![plugin(clippy)]
|
|
#![deny(clippy)]
|
|
|
|
enum FakeCallType {
|
|
CALL, CREATE
|
|
}
|
|
|
|
enum FakeCallType2 {
|
|
CALL, CREATELL
|
|
}
|
|
|
|
enum Foo {
|
|
cFoo, //~ ERROR: Variant name ends with the enum's name
|
|
cBar,
|
|
cBaz,
|
|
}
|
|
|
|
enum Fooo {
|
|
cFoo, // no error, threshold is 3 variants by default
|
|
cBar,
|
|
}
|
|
|
|
enum Food { //~ ERROR: All variants have the same prefix: `Food`
|
|
FoodGood, //~ ERROR: Variant name starts with the enum's name
|
|
FoodMiddle, //~ ERROR: Variant name starts with the enum's name
|
|
FoodBad, //~ ERROR: Variant name starts with the enum's name
|
|
}
|
|
|
|
enum Stuff {
|
|
StuffBad, // no error
|
|
}
|
|
|
|
enum BadCallType { //~ ERROR: All variants have the same prefix: `CallType`
|
|
CallTypeCall,
|
|
CallTypeCreate,
|
|
CallTypeDestroy,
|
|
}
|
|
|
|
enum TwoCallType { // no error
|
|
CallTypeCall,
|
|
CallTypeCreate,
|
|
}
|
|
|
|
enum Consts { //~ ERROR: All variants have the same prefix: `Constant`
|
|
ConstantInt,
|
|
ConstantCake,
|
|
ConstantLie,
|
|
}
|
|
|
|
enum Two { // no error here
|
|
ConstantInt,
|
|
ConstantInfer,
|
|
}
|
|
|
|
enum Something {
|
|
CCall,
|
|
CCreate,
|
|
CCryogenize,
|
|
}
|
|
|
|
enum Seal {
|
|
With,
|
|
Without,
|
|
}
|
|
|
|
enum Seall {
|
|
With,
|
|
WithOut,
|
|
Withbroken,
|
|
}
|
|
|
|
enum Sealll {
|
|
With,
|
|
WithOut,
|
|
}
|
|
|
|
enum Seallll { //~ ERROR: All variants have the same prefix: `With`
|
|
WithOutCake,
|
|
WithOutTea,
|
|
WithOut,
|
|
}
|
|
|
|
enum NonCaps { //~ ERROR: All variants have the same prefix: `Prefix`
|
|
Prefix的,
|
|
PrefixTea,
|
|
PrefixCake,
|
|
}
|
|
|
|
fn main() {}
|