]> git.lizzy.rs Git - rust.git/blob - tests/ui-toml/fn_params_excessive_bools/test.rs
Auto merge of #5125 - Areredify:too_many_bools, r=flip1995
[rust.git] / tests / ui-toml / fn_params_excessive_bools / test.rs
1 #![warn(clippy::fn_params_excessive_bools)]
2
3 fn f(_: bool) {}
4 fn g(_: bool, _: bool) {}
5
6 fn main() {}