summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/upper_case_acronyms.rs
blob: c4711b87ec3804f952fe81421fc9cafcc154ecff (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
#![warn(clippy::upper_case_acronyms)]

struct HTTPResponse; // not linted by default, but with cfg option

struct CString; // not linted

enum Flags {
    NS, // not linted
    CWR,
    //~^ ERROR: name `CWR` contains a capitalized acronym
    //~| NOTE: `-D clippy::upper-case-acronyms` implied by `-D warnings`
    ECE,
    //~^ ERROR: name `ECE` contains a capitalized acronym
    URG,
    //~^ ERROR: name `URG` contains a capitalized acronym
    ACK,
    //~^ ERROR: name `ACK` contains a capitalized acronym
    PSH,
    //~^ ERROR: name `PSH` contains a capitalized acronym
    RST,
    //~^ ERROR: name `RST` contains a capitalized acronym
    SYN,
    //~^ ERROR: name `SYN` contains a capitalized acronym
    FIN,
    //~^ ERROR: name `FIN` contains a capitalized acronym
}

// linted with cfg option, beware that lint suggests `GccllvmSomething` instead of
// `GccLlvmSomething`
struct GCCLLVMSomething;

// public items must not be linted
pub struct NOWARNINGHERE;
pub struct ALSONoWarningHERE;

// enum variants should not be linted if the num is pub
pub enum ParseError<T> {
    YDB(u8),
    Utf8(std::string::FromUtf8Error),
    Parse(T, String),
}

// private, do lint here
enum ParseErrorPrivate<T> {
    WASD(u8),
    //~^ ERROR: name `WASD` contains a capitalized acronym
    Utf8(std::string::FromUtf8Error),
    Parse(T, String),
}

// do lint here
struct JSON;
//~^ ERROR: name `JSON` contains a capitalized acronym

// do lint here
enum YAML {
    //~^ ERROR: name `YAML` contains a capitalized acronym
    Num(u32),
    Str(String),
}

// test for issue #7708
enum AllowOnField {
    DISALLOW,
    //~^ ERROR: name `DISALLOW` contains a capitalized acronym
    #[allow(clippy::upper_case_acronyms)]
    ALLOW,
}

fn main() {}