summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/item_name_repetitions/threshold5/item_name_repetitions.stderr
blob: 33802c44bf9a374d4ec88dce7fef1a0cad561ef7 (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
error: all fields have the same postfix: `data`
  --> $DIR/item_name_repetitions.rs:9:1
   |
LL | / struct Data2 {
LL | |
LL | |     a_data: u8,
LL | |     b_data: u8,
...  |
LL | |     e_data: u8,
LL | | }
   | |_^
   |
   = help: remove the postfixes
   = note: `-D clippy::struct-field-names` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::struct_field_names)]`

error: all variants have the same postfix: `Foo`
  --> $DIR/item_name_repetitions.rs:23:1
   |
LL | / enum Foo2 {
LL | |
LL | |     AFoo,
LL | |     BFoo,
...  |
LL | |     EFoo,
LL | | }
   | |_^
   |
   = help: remove the postfixes and use full paths to the variants instead of glob imports
   = note: `-D clippy::enum-variant-names` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::enum_variant_names)]`

error: aborting due to 2 previous errors