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

10 lines
95 B
Rust
Raw Normal View History

2020-02-01 23:49:52 +00:00
#![warn(clippy::struct_excessive_bools)]
struct S {
a: bool,
}
2022-03-27 12:41:09 +00:00
struct Foo;
2020-02-01 23:49:52 +00:00
fn main() {}