mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
11 lines
319 B
Text
11 lines
319 B
Text
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
|
|
|