10 lines
97 B
Rust
Raw Normal View History

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