about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui-toml/struct_excessive_bools/test.rs
blob: 590cd6eeaa47b2a2b5aae3545810094200c55555 (plain)
1
2
3
4
5
6
7
8
9
10
#![warn(clippy::struct_excessive_bools)]

struct S {
    //~^ struct_excessive_bools
    a: bool,
}

struct Foo;

fn main() {}