]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui-toml/fn_params_excessive_bools/test.rs
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / src / tools / clippy / tests / ui-toml / fn_params_excessive_bools / test.rs
CommitLineData
f20569fa
XL
1#![warn(clippy::fn_params_excessive_bools)]
2
3fn f(_: bool) {}
4fn g(_: bool, _: bool) {}
5
6fn main() {}