]> git.lizzy.rs Git - rust.git/blob - tests/ui-toml/struct_excessive_bools/test.rs
Merge commit '984330a6ee3c4d15626685d6dc8b7b759ff630bd' into clippyup
[rust.git] / tests / ui-toml / struct_excessive_bools / test.rs
1 #![warn(clippy::struct_excessive_bools)]
2
3 struct S {
4     a: bool,
5 }
6
7 struct Foo;
8
9 fn main() {}