blob: 590cd6eeaa47b2a2b5aae3545810094200c55555 [file] [log] [blame] [edit]
#![warn(clippy::struct_excessive_bools)]
struct S {
//~^ struct_excessive_bools
a: bool,
}
struct Foo;
fn main() {}