summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/struct_excessive_bools/test.rs
blob: 32dd80246fab44cda2884f4a4f996d1e8f69d3e9 (plain)
1
2
3
4
5
6
7
8
9
#![warn(clippy::struct_excessive_bools)]

struct S {
    a: bool,
}

struct Foo;

fn main() {}