rust/tests/ui-toml/struct_excessive_bools/test.stderr
2024-02-17 12:34:54 +00:00

15 lines
442 B
Plaintext

error: more than 0 bools in a struct
--> tests/ui-toml/struct_excessive_bools/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`
= help: to override `-D warnings` add `#[allow(clippy::struct_excessive_bools)]`
error: aborting due to 1 previous error