13 lines
443 B
Plaintext
Raw Normal View History

2020-02-02 02:49:52 +03:00
error: more than 1 bools in function parameters
2024-02-17 12:16:29 +00:00
--> tests/ui-toml/fn_params_excessive_bools/test.rs:4:1
2020-02-02 02:49:52 +03:00
|
LL | fn g(_: bool, _: bool) {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider refactoring bools into two-variant enums
2022-09-22 20:04:22 +04: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-02 02:49:52 +03:00
error: aborting due to 1 previous error
2020-02-02 02:49:52 +03:00