mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
9 lines
97 B
Rust
9 lines
97 B
Rust
#![warn(clippy::struct_excessive_bools)]
|
|
|
|
struct S {
|
|
a: bool,
|
|
}
|
|
|
|
struct Foo {}
|
|
|
|
fn main() {}
|