]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/upper_case_acronyms.stderr
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / src / tools / clippy / tests / ui / upper_case_acronyms.stderr
CommitLineData
f20569fa
XL
1error: name `CWR` contains a capitalized acronym
2 --> $DIR/upper_case_acronyms.rs:9:5
3 |
4LL | 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
9error: name `ECE` contains a capitalized acronym
10 --> $DIR/upper_case_acronyms.rs:10:5
11 |
12LL | ECE,
13 | ^^^ help: consider making the acronym lowercase, except the initial letter: `Ece`
14
15error: name `URG` contains a capitalized acronym
16 --> $DIR/upper_case_acronyms.rs:11:5
17 |
18LL | URG,
19 | ^^^ help: consider making the acronym lowercase, except the initial letter: `Urg`
20
21error: name `ACK` contains a capitalized acronym
22 --> $DIR/upper_case_acronyms.rs:12:5
23 |
24LL | ACK,
25 | ^^^ help: consider making the acronym lowercase, except the initial letter (notice the capitalization): `Ack`
26
27error: name `PSH` contains a capitalized acronym
28 --> $DIR/upper_case_acronyms.rs:13:5
29 |
30LL | PSH,
31 | ^^^ help: consider making the acronym lowercase, except the initial letter: `Psh`
32
33error: name `RST` contains a capitalized acronym
34 --> $DIR/upper_case_acronyms.rs:14:5
35 |
36LL | RST,
37 | ^^^ help: consider making the acronym lowercase, except the initial letter: `Rst`
38
39error: name `SYN` contains a capitalized acronym
40 --> $DIR/upper_case_acronyms.rs:15:5
41 |
42LL | SYN,
43 | ^^^ help: consider making the acronym lowercase, except the initial letter: `Syn`
44
45error: name `FIN` contains a capitalized acronym
46 --> $DIR/upper_case_acronyms.rs:16:5
47 |
48LL | FIN,
49 | ^^^ help: consider making the acronym lowercase, except the initial letter: `Fin`
50
51error: aborting due to 8 previous errors
52