rust-clippy/tests/ui-toml/struct_excessive_bools/test.rs

9 lines
95 B
Rust

#![warn(clippy::struct_excessive_bools)]
struct S {
a: bool,
}
struct Foo;
fn main() {}