10 lines
95 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;
2020-02-02 02:49:52 +03:00
fn main() {}