10 lines
97 B
Rust
10 lines
97 B
Rust
#![warn(clippy::struct_excessive_bools)]
|
|
|
|
struct S {
|
|
a: bool,
|
|
}
|
|
|
|
struct Foo {}
|
|
|
|
fn main() {}
|