blob: 1cd45685609f047e6e190266a2e49de3322a7a2a [file] [log] [blame]
//@compile-flags: -W clippy::restriction
//@error-in-other-file: restriction
#![warn(clippy::blanket_clippy_restriction_lints)]
//! Test that the whole restriction group is not enabled.
#![warn(clippy::restriction)]
//~^ blanket_clippy_restriction_lints
#![deny(clippy::restriction)]
//~^ blanket_clippy_restriction_lints
#![forbid(clippy::restriction)]
//~^ blanket_clippy_restriction_lints
fn main() {}