]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui-toml/struct_excessive_bools/test.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / tools / clippy / tests / ui-toml / struct_excessive_bools / test.stderr
CommitLineData
f20569fa
XL
1error: more than 0 bools in a struct
2 --> $DIR/test.rs:3:1
3 |
4LL | / struct S {
5LL | | a: bool,
6LL | | }
7 | |_^
8 |
f20569fa 9 = help: consider using a state machine or refactoring bools into two-variant enums
2b03887a 10 = note: `-D clippy::struct-excessive-bools` implied by `-D warnings`
f20569fa
XL
11
12error: aborting due to previous error
13