]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/upper_case_acronyms.stderr
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[rust.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
9 error: name `ECE` contains a capitalized acronym
10   --> $DIR/upper_case_acronyms.rs:10:5
11    |
12 LL |     ECE,
13    |     ^^^ help: consider making the acronym lowercase, except the initial letter: `Ece`
14
15 error: name `URG` contains a capitalized acronym
16   --> $DIR/upper_case_acronyms.rs:11:5
17    |
18 LL |     URG,
19    |     ^^^ help: consider making the acronym lowercase, except the initial letter: `Urg`
20
21 error: name `ACK` contains a capitalized acronym
22   --> $DIR/upper_case_acronyms.rs:12:5
23    |
24 LL |     ACK,
25    |     ^^^ help: consider making the acronym lowercase, except the initial letter (notice the capitalization): `Ack`
26
27 error: name `PSH` contains a capitalized acronym
28   --> $DIR/upper_case_acronyms.rs:13:5
29    |
30 LL |     PSH,
31    |     ^^^ help: consider making the acronym lowercase, except the initial letter: `Psh`
32
33 error: name `RST` contains a capitalized acronym
34   --> $DIR/upper_case_acronyms.rs:14:5
35    |
36 LL |     RST,
37    |     ^^^ help: consider making the acronym lowercase, except the initial letter: `Rst`
38
39 error: name `SYN` contains a capitalized acronym
40   --> $DIR/upper_case_acronyms.rs:15:5
41    |
42 LL |     SYN,
43    |     ^^^ help: consider making the acronym lowercase, except the initial letter: `Syn`
44
45 error: name `FIN` contains a capitalized acronym
46   --> $DIR/upper_case_acronyms.rs:16:5
47    |
48 LL |     FIN,
49    |     ^^^ help: consider making the acronym lowercase, except the initial letter: `Fin`
50
51 error: name `WASD` contains a capitalized acronym
52   --> $DIR/upper_case_acronyms.rs:36:5
53    |
54 LL |     WASD(u8),
55    |     ^^^^ help: consider making the acronym lowercase, except the initial letter: `Wasd`
56
57 error: aborting due to 9 previous errors
58