2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2024-12-21 02:23:19 +00:00
rust-clippy/tests/ui-toml/struct_excessive_bools/test.rs
2020-02-05 20:54:58 +03:00

9 lines
97 B
Rust

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