]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/blanket_clippy_restriction_lints.rs
Rollup merge of #78769 - est31:remove_lifetimes, r=KodrAus
[rust.git] / src / tools / clippy / tests / ui / blanket_clippy_restriction_lints.rs
1 #![warn(clippy::blanket_clippy_restriction_lints)]
2
3 //! Test that the whole restriction group is not enabled
4 #![warn(clippy::restriction)]
5 #![deny(clippy::restriction)]
6 #![forbid(clippy::restriction)]
7
8 fn main() {}