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