rust/tests/ui-toml/struct_excessive_bools/test.stderr
2022-10-01 10:03:06 +00:00

14 lines
324 B
Plaintext

error: more than 0 bools in a struct
--> $DIR/test.rs:3:1
|
LL | / struct S {
LL | | a: bool,
LL | | }
| |_^
|
= help: consider using a state machine or refactoring bools into two-variant enums
= note: `-D clippy::struct-excessive-bools` implied by `-D warnings`
error: aborting due to previous error