summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/struct_excessive_bools.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/struct_excessive_bools.rs')
-rw-r--r--src/tools/clippy/tests/ui/struct_excessive_bools.rs44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/struct_excessive_bools.rs b/src/tools/clippy/tests/ui/struct_excessive_bools.rs
new file mode 100644
index 000000000..ce4fe830a
--- /dev/null
+++ b/src/tools/clippy/tests/ui/struct_excessive_bools.rs
@@ -0,0 +1,44 @@
+#![warn(clippy::struct_excessive_bools)]
+
+macro_rules! foo {
+ () => {
+ struct MacroFoo {
+ a: bool,
+ b: bool,
+ c: bool,
+ d: bool,
+ }
+ };
+}
+
+foo!();
+
+struct Foo {
+ a: bool,
+ b: bool,
+ c: bool,
+}
+
+struct BadFoo {
+ a: bool,
+ b: bool,
+ c: bool,
+ d: bool,
+}
+
+#[repr(C)]
+struct Bar {
+ a: bool,
+ b: bool,
+ c: bool,
+ d: bool,
+}
+
+fn main() {
+ struct FooFoo {
+ a: bool,
+ b: bool,
+ c: bool,
+ d: bool,
+ }
+}