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

10 lines
97 B
Rust
Raw Normal View History

2020-02-02 00:49:52 +01:00
#![warn(clippy::struct_excessive_bools)]
struct S {
a: bool,
}
struct Foo {}
fn main() {}