2020-02-01 23:49:52 +00:00
|
|
|
error: more than 3 bools in function parameters
|
2022-10-28 12:54:59 +00:00
|
|
|
--> $DIR/fn_params_excessive_bools.rs:19:1
|
2020-02-01 23:49:52 +00:00
|
|
|
|
|
|
|
|
LL | fn g(_: bool, _: bool, _: bool, _: bool) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider refactoring bools into two-variant enums
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::fn-params-excessive-bools` implied by `-D warnings`
|
2020-02-01 23:49:52 +00:00
|
|
|
|
|
|
|
error: more than 3 bools in function parameters
|
2022-10-28 12:54:59 +00:00
|
|
|
--> $DIR/fn_params_excessive_bools.rs:22:1
|
2020-02-01 23:49:52 +00:00
|
|
|
|
|
|
|
|
LL | fn t(_: S, _: S, _: Box<S>, _: Vec<u32>, _: bool, _: bool, _: bool, _: bool) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider refactoring bools into two-variant enums
|
|
|
|
|
|
|
|
error: more than 3 bools in function parameters
|
2022-11-07 20:00:37 +00:00
|
|
|
--> $DIR/fn_params_excessive_bools.rs:27:5
|
|
|
|
|
|
|
|
|
LL | fn f(_: bool, _: bool, _: bool, _: bool);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider refactoring bools into two-variant enums
|
|
|
|
|
|
|
|
error: more than 3 bools in function parameters
|
|
|
|
--> $DIR/fn_params_excessive_bools.rs:31:5
|
|
|
|
|
|
|
|
|
LL | fn i(_: bool, _: bool, _: bool, _: bool) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider refactoring bools into two-variant enums
|
|
|
|
|
|
|
|
error: more than 3 bools in function parameters
|
|
|
|
--> $DIR/fn_params_excessive_bools.rs:35:5
|
2020-02-01 23:49:52 +00:00
|
|
|
|
|
2022-10-28 12:54:59 +00:00
|
|
|
LL | fn f(&self, _: bool, _: bool, _: bool, _: bool) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-02-01 23:49:52 +00:00
|
|
|
|
|
|
|
|
= help: consider refactoring bools into two-variant enums
|
|
|
|
|
|
|
|
error: more than 3 bools in function parameters
|
2022-11-07 20:00:37 +00:00
|
|
|
--> $DIR/fn_params_excessive_bools.rs:50:5
|
2020-02-01 23:49:52 +00:00
|
|
|
|
|
|
|
|
LL | / fn n(_: bool, _: u32, _: bool, _: Box<u32>, _: bool, _: bool) {
|
|
|
|
LL | | fn nn(_: bool, _: bool, _: bool, _: bool) {}
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
= help: consider refactoring bools into two-variant enums
|
|
|
|
|
|
|
|
error: more than 3 bools in function parameters
|
2022-11-07 20:00:37 +00:00
|
|
|
--> $DIR/fn_params_excessive_bools.rs:51:9
|
2020-02-01 23:49:52 +00:00
|
|
|
|
|
|
|
|
LL | fn nn(_: bool, _: bool, _: bool, _: bool) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider refactoring bools into two-variant enums
|
|
|
|
|
2022-11-07 20:00:37 +00:00
|
|
|
error: aborting due to 7 previous errors
|
2020-02-01 23:49:52 +00:00
|
|
|
|