]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui-toml/fn_params_excessive_bools/test.stderr
Rollup merge of #92780 - b-naber:postpone-const-eval-coherence, r=lcnr
[rust.git] / src / tools / clippy / tests / ui-toml / fn_params_excessive_bools / test.stderr
1 error: more than 1 bools in function parameters
2   --> $DIR/test.rs:4:1
3    |
4 LL | fn g(_: bool, _: bool) {}
5    | ^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: `-D clippy::fn-params-excessive-bools` implied by `-D warnings`
8    = help: consider refactoring bools into two-variant enums
9
10 error: aborting due to previous error
11