summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/fn_params_excessive_bools/test.stderr
blob: d05adc3d36e3350d97cc31a27c3704321af0b254 (plain)
1
2
3
4
5
6
7
8
9
10
11
error: more than 1 bools in function parameters
  --> $DIR/test.rs:4:1
   |
LL | fn g(_: bool, _: bool) {}
   | ^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::fn-params-excessive-bools` implied by `-D warnings`
   = help: consider refactoring bools into two-variant enums

error: aborting due to previous error