rust/tests/ui/upper_case_acronyms.rs

23 lines
417 B
Rust
Raw Normal View History

2020-12-19 14:50:45 +01:00
#![warn(clippy::upper_case_acronyms)]
struct HTTPResponse; // not linted by default, but with cfg option
2020-12-19 14:50:45 +01:00
struct CString; // not linted
enum Flags {
NS, // not linted
2020-12-19 14:50:45 +01:00
CWR,
ECE,
URG,
ACK,
PSH,
RST,
SYN,
FIN,
}
struct GCCLLVMSomething; // linted with cfg option, beware that lint suggests `GccllvmSomething` instead of
// `GccLlvmSomething`
2020-12-19 14:50:45 +01:00
fn main() {}