summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/upper_case_acronyms.stderr
blob: 009c53c725b6f7c93664eaf1570499d8e6f01031 (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
error: name `CWR` contains a capitalized acronym
  --> $DIR/upper_case_acronyms.rs:9:5
   |
LL |     CWR,
   |     ^^^ help: consider making the acronym lowercase, except the initial letter: `Cwr`
   |
   = note: `-D clippy::upper-case-acronyms` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::upper_case_acronyms)]`

error: name `ECE` contains a capitalized acronym
  --> $DIR/upper_case_acronyms.rs:12:5
   |
LL |     ECE,
   |     ^^^ help: consider making the acronym lowercase, except the initial letter: `Ece`

error: name `URG` contains a capitalized acronym
  --> $DIR/upper_case_acronyms.rs:14:5
   |
LL |     URG,
   |     ^^^ help: consider making the acronym lowercase, except the initial letter: `Urg`

error: name `ACK` contains a capitalized acronym
  --> $DIR/upper_case_acronyms.rs:16:5
   |
LL |     ACK,
   |     ^^^ help: consider making the acronym lowercase, except the initial letter (notice the capitalization): `Ack`

error: name `PSH` contains a capitalized acronym
  --> $DIR/upper_case_acronyms.rs:18:5
   |
LL |     PSH,
   |     ^^^ help: consider making the acronym lowercase, except the initial letter: `Psh`

error: name `RST` contains a capitalized acronym
  --> $DIR/upper_case_acronyms.rs:20:5
   |
LL |     RST,
   |     ^^^ help: consider making the acronym lowercase, except the initial letter: `Rst`

error: name `SYN` contains a capitalized acronym
  --> $DIR/upper_case_acronyms.rs:22:5
   |
LL |     SYN,
   |     ^^^ help: consider making the acronym lowercase, except the initial letter: `Syn`

error: name `FIN` contains a capitalized acronym
  --> $DIR/upper_case_acronyms.rs:24:5
   |
LL |     FIN,
   |     ^^^ help: consider making the acronym lowercase, except the initial letter: `Fin`

error: name `WASD` contains a capitalized acronym
  --> $DIR/upper_case_acronyms.rs:45:5
   |
LL |     WASD(u8),
   |     ^^^^ help: consider making the acronym lowercase, except the initial letter: `Wasd`

error: name `JSON` contains a capitalized acronym
  --> $DIR/upper_case_acronyms.rs:52:8
   |
LL | struct JSON;
   |        ^^^^ help: consider making the acronym lowercase, except the initial letter: `Json`

error: name `YAML` contains a capitalized acronym
  --> $DIR/upper_case_acronyms.rs:56:6
   |
LL | enum YAML {
   |      ^^^^ help: consider making the acronym lowercase, except the initial letter: `Yaml`

error: name `DISALLOW` contains a capitalized acronym
  --> $DIR/upper_case_acronyms.rs:64:5
   |
LL |     DISALLOW,
   |     ^^^^^^^^ help: consider making the acronym lowercase, except the initial letter: `Disallow`

error: aborting due to 12 previous errors