c2c73189c8
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
13 lines
408 B
Plaintext
13 lines
408 B
Plaintext
error: more than 1 bools in function parameters
|
|
--> $DIR/test.rs:4:1
|
|
|
|
|
LL | fn g(_: bool, _: bool) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider refactoring bools into two-variant enums
|
|
= note: `-D clippy::fn-params-excessive-bools` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::fn_params_excessive_bools)]`
|
|
|
|
error: aborting due to 1 previous error
|
|
|