mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
32 lines
1.1 KiB
Text
32 lines
1.1 KiB
Text
error: `clippy::restriction` is not meant to be enabled as a group
|
|
|
|
|
= note: because of the command line `--warn clippy::restriction`
|
|
= help: enable the restriction lints you need individually
|
|
= note: `-D clippy::blanket-clippy-restriction-lints` implied by `-D warnings`
|
|
|
|
error: `clippy::restriction` is not meant to be enabled as a group
|
|
--> $DIR/blanket_clippy_restriction_lints.rs:6:9
|
|
|
|
|
LL | #![warn(clippy::restriction)]
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: enable the restriction lints you need individually
|
|
|
|
error: `clippy::restriction` is not meant to be enabled as a group
|
|
--> $DIR/blanket_clippy_restriction_lints.rs:7:9
|
|
|
|
|
LL | #![deny(clippy::restriction)]
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: enable the restriction lints you need individually
|
|
|
|
error: `clippy::restriction` is not meant to be enabled as a group
|
|
--> $DIR/blanket_clippy_restriction_lints.rs:8:11
|
|
|
|
|
LL | #![forbid(clippy::restriction)]
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: enable the restriction lints you need individually
|
|
|
|
error: aborting due to 4 previous errors
|
|
|