rust/tests/ui-toml/fn_params_excessive_bools/test.stderr

13 lines
408 B
Plaintext
Raw Normal View History

2020-02-01 17:49:52 -06:00
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
2022-09-22 11:04:22 -05:00
= note: `-D clippy::fn-params-excessive-bools` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::fn_params_excessive_bools)]`
2020-02-01 17:49:52 -06:00
error: aborting due to 1 previous error
2020-02-01 17:49:52 -06:00