summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/struct_excessive_bools/test.stderr
blob: 9237c9c9d29d901145eb1d9af5a840ff827fa3a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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`
   = help: to override `-D warnings` add `#[allow(clippy::struct_excessive_bools)]`

error: aborting due to previous error