mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-07 20:43:03 +00:00
14 lines
473 B
Rust
14 lines
473 B
Rust
//@compile-flags: -W clippy::restriction
|
|
|
|
#![warn(clippy::blanket_clippy_restriction_lints)]
|
|
|
|
//! Test that the whole restriction group is not enabled
|
|
#![warn(clippy::restriction)]
|
|
//~^ ERROR: `clippy::restriction` is not meant to be enabled as a group
|
|
#![deny(clippy::restriction)]
|
|
//~^ ERROR: `clippy::restriction` is not meant to be enabled as a group
|
|
#![forbid(clippy::restriction)]
|
|
//~^ ERROR: `clippy::restriction` is not meant to be enabled as a group
|
|
|
|
fn main() {}
|