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

10 lines
95 B
Rust
Raw Normal View History

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