summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/blanket_clippy_restriction_lints.rs
blob: e1ff25c54cfcbaa2e043fee7d2eb01637ea208ec (plain)
1
2
3
4
5
6
7
8
9
10
//@compile-flags: -W clippy::restriction

#![warn(clippy::blanket_clippy_restriction_lints)]

//! Test that the whole restriction group is not enabled
#![warn(clippy::restriction)]
#![deny(clippy::restriction)]
#![forbid(clippy::restriction)]

fn main() {}