]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/tests/ui/upper_case_acronyms.stderr
New upstream version 1.74.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / upper_case_acronyms.stderr
1 error: name `CWR` contains a capitalized acronym
2 --> $DIR/upper_case_acronyms.rs:9:5
3 |
4 LL | CWR,
5 | ^^^ help: consider making the acronym lowercase, except the initial letter: `Cwr`
6 |
7 = note: `-D clippy::upper-case-acronyms` implied by `-D warnings`
8 = help: to override `-D warnings` add `#[allow(clippy::upper_case_acronyms)]`
9
10 error: name `ECE` contains a capitalized acronym
11 --> $DIR/upper_case_acronyms.rs:12:5
12 |
13 LL | ECE,
14 | ^^^ help: consider making the acronym lowercase, except the initial letter: `Ece`
15
16 error: name `URG` contains a capitalized acronym
17 --> $DIR/upper_case_acronyms.rs:14:5
18 |
19 LL | URG,
20 | ^^^ help: consider making the acronym lowercase, except the initial letter: `Urg`
21
22 error: name `ACK` contains a capitalized acronym
23 --> $DIR/upper_case_acronyms.rs:16:5
24 |
25 LL | ACK,
26 | ^^^ help: consider making the acronym lowercase, except the initial letter (notice the capitalization): `Ack`
27
28 error: name `PSH` contains a capitalized acronym
29 --> $DIR/upper_case_acronyms.rs:18:5
30 |
31 LL | PSH,
32 | ^^^ help: consider making the acronym lowercase, except the initial letter: `Psh`
33
34 error: name `RST` contains a capitalized acronym
35 --> $DIR/upper_case_acronyms.rs:20:5
36 |
37 LL | RST,
38 | ^^^ help: consider making the acronym lowercase, except the initial letter: `Rst`
39
40 error: name `SYN` contains a capitalized acronym
41 --> $DIR/upper_case_acronyms.rs:22:5
42 |
43 LL | SYN,
44 | ^^^ help: consider making the acronym lowercase, except the initial letter: `Syn`
45
46 error: name `FIN` contains a capitalized acronym
47 --> $DIR/upper_case_acronyms.rs:24:5
48 |
49 LL | FIN,
50 | ^^^ help: consider making the acronym lowercase, except the initial letter: `Fin`
51
52 error: name `WASD` contains a capitalized acronym
53 --> $DIR/upper_case_acronyms.rs:45:5
54 |
55 LL | WASD(u8),
56 | ^^^^ help: consider making the acronym lowercase, except the initial letter: `Wasd`
57
58 error: name `JSON` contains a capitalized acronym
59 --> $DIR/upper_case_acronyms.rs:52:8
60 |
61 LL | struct JSON;
62 | ^^^^ help: consider making the acronym lowercase, except the initial letter: `Json`
63
64 error: name `YAML` contains a capitalized acronym
65 --> $DIR/upper_case_acronyms.rs:56:6
66 |
67 LL | enum YAML {
68 | ^^^^ help: consider making the acronym lowercase, except the initial letter: `Yaml`
69
70 error: aborting due to 11 previous errors
71