summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/blanket_clippy_restriction_lints.stderr
blob: e83eb4d605aa73141f066b88c0de467dbbf02c9f (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
error: restriction lints are not meant to be all enabled
  --> $DIR/blanket_clippy_restriction_lints.rs:4:9
   |
LL | #![warn(clippy::restriction)]
   |         ^^^^^^^^^^^^^^^^^^^
   |
   = help: try enabling only the lints you really need
   = note: `-D clippy::blanket-clippy-restriction-lints` implied by `-D warnings`

error: restriction lints are not meant to be all enabled
  --> $DIR/blanket_clippy_restriction_lints.rs:5:9
   |
LL | #![deny(clippy::restriction)]
   |         ^^^^^^^^^^^^^^^^^^^
   |
   = help: try enabling only the lints you really need

error: restriction lints are not meant to be all enabled
  --> $DIR/blanket_clippy_restriction_lints.rs:6:11
   |
LL | #![forbid(clippy::restriction)]
   |           ^^^^^^^^^^^^^^^^^^^
   |
   = help: try enabling only the lints you really need

error: aborting due to 3 previous errors