2020-02-01 23:49:52 +00:00
|
|
|
error: more than 3 bools in a struct
|
|
|
|
--> $DIR/struct_excessive_bools.rs:22:1
|
|
|
|
|
|
|
|
|
LL | / struct BadFoo {
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2020-02-01 23:49:52 +00:00
|
|
|
LL | | a: bool,
|
|
|
|
LL | | b: bool,
|
|
|
|
LL | | c: bool,
|
|
|
|
LL | | d: bool,
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
= help: consider using a state machine or refactoring bools into two-variant enums
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::struct-excessive-bools` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::struct_excessive_bools)]`
|
2020-02-01 23:49:52 +00:00
|
|
|
|
|
|
|
error: more than 3 bools in a struct
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/struct_excessive_bools.rs:39:5
|
2020-02-01 23:49:52 +00:00
|
|
|
|
|
|
|
|
LL | / struct FooFoo {
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2020-02-01 23:49:52 +00:00
|
|
|
LL | | a: bool,
|
|
|
|
LL | | b: bool,
|
|
|
|
LL | | c: bool,
|
|
|
|
LL | | d: bool,
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
= help: consider using a state machine or refactoring bools into two-variant enums
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|