summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/blanket_clippy_restriction_lints.stderr
blob: 2bf89ab69a40cdd75ed1bdc421858e722387ba9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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