rust-clippy/tests/ui/upper_case_acronyms.rs

42 lines
771 B
Rust
Raw Normal View History

2020-12-19 13:50:45 +00:00
#![warn(clippy::upper_case_acronyms)]
struct HTTPResponse; // not linted by default, but with cfg option
2020-12-19 13:50:45 +00:00
struct CString; // not linted
enum Flags {
NS, // not linted
2020-12-19 13:50:45 +00:00
CWR,
ECE,
URG,
ACK,
PSH,
RST,
SYN,
FIN,
}
// linted with cfg option, beware that lint suggests `GccllvmSomething` instead of
// `GccLlvmSomething`
struct GCCLLVMSomething;
2020-12-19 13:50:45 +00:00
// 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),
Utf8(std::string::FromUtf8Error),
Parse(T, String),
}
2020-12-19 13:50:45 +00:00
fn main() {}