]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui-toml/fn_params_excessive_bools/test.rs
Add 'src/tools/clippy/' from commit 'd2708873ef711ec8ab45df1e984ecf24a96cd369'
[rust.git] / src / tools / clippy / 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() {}