summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/enum_variants.stderr
blob: b1e88de0fcf1cb45e470c024c2d7ab31df3b6e08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
error: variant name ends with the enum's name
  --> $DIR/enum_variants.rs:16:5
   |
LL |     cFoo,
   |     ^^^^
   |
   = note: `-D clippy::enum-variant-names` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::enum_variant_names)]`

error: all variants have the same prefix: `c`
  --> $DIR/enum_variants.rs:14:1
   |
LL | / enum Foo {
LL | |
LL | |     cFoo,
LL | |
...  |
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:30:5
   |
LL |     FoodGood,
   |     ^^^^^^^^

error: variant name starts with the enum's name
  --> $DIR/enum_variants.rs:32:5
   |
LL |     FoodMiddle,
   |     ^^^^^^^^^^

error: variant name starts with the enum's name
  --> $DIR/enum_variants.rs:34:5
   |
LL |     FoodBad,
   |     ^^^^^^^

error: all variants have the same prefix: `Food`
  --> $DIR/enum_variants.rs:28:1
   |
LL | / enum Food {
LL | |
LL | |     FoodGood,
LL | |
...  |
LL | |
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:42:1
   |
LL | / enum BadCallType {
LL | |
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:55:1
   |
LL | / enum Consts {
LL | |
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:68:1
   |
LL | / enum Something {
LL | |
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:91:1
   |
LL | / enum Seallll {
LL | |
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:147:1
   |
LL | / enum IDataRequest {
LL | |
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:154:1
   |
LL | / enum HIDataRequest {
LL | |
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: all variants have the same prefix: `_Type`
  --> $DIR/enum_variants.rs:175:5
   |
LL | /     enum DoLint {
LL | |
LL | |         _TypeCreate,
LL | |         _TypeRead,
LL | |         _TypeUpdate,
LL | |         _TypeDestroy,
LL | |     }
   | |_____^
   |
   = help: remove the prefixes and use full paths to the variants instead of glob imports

error: all variants have the same postfix: `Type`
  --> $DIR/enum_variants.rs:183:5
   |
LL | /     enum DoLintToo {
LL | |
LL | |         _CreateType,
LL | |         _UpdateType,
LL | |         _DeleteType,
LL | |     }
   | |_____^
   |
   = help: remove the postfixes and use full paths to the variants instead of glob imports

error: variant name starts with the enum's name
  --> $DIR/enum_variants.rs:212:9
   |
LL |         DataDependent,
   |         ^^^^^^^^^^^^^

error: variant name starts with the enum's name
  --> $DIR/enum_variants.rs:217:9
   |
LL |         DatasDependent,
   |         ^^^^^^^^^^^^^^

error: aborting due to 16 previous errors