]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/blanket_clippy_restriction_lints.stderr
Merge commit '1fcc74cc9e03bc91eaa80ecf92976b0b14b3aeb6' into clippyup
[rust.git] / src / tools / clippy / tests / ui / blanket_clippy_restriction_lints.stderr
1 error: restriction lints are not meant to be all enabled
2   --> $DIR/blanket_clippy_restriction_lints.rs:4:9
3    |
4 LL | #![warn(clippy::restriction)]
5    |         ^^^^^^^^^^^^^^^^^^^
6    |
7    = note: `-D clippy::blanket-clippy-restriction-lints` implied by `-D warnings`
8    = help: try enabling only the lints you really need
9
10 error: restriction lints are not meant to be all enabled
11   --> $DIR/blanket_clippy_restriction_lints.rs:5:9
12    |
13 LL | #![deny(clippy::restriction)]
14    |         ^^^^^^^^^^^^^^^^^^^
15    |
16    = help: try enabling only the lints you really need
17
18 error: restriction lints are not meant to be all enabled
19   --> $DIR/blanket_clippy_restriction_lints.rs:6:11
20    |
21 LL | #![forbid(clippy::restriction)]
22    |           ^^^^^^^^^^^^^^^^^^^
23    |
24    = help: try enabling only the lints you really need
25
26 error: aborting due to 3 previous errors
27