summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-internal/lint_without_lint_pass.stderr
blob: de55876b1d709f6a3970b08da8cc666022aa0d07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error: the lint `TEST_LINT` is not added to any `LintPass`
  --> $DIR/lint_without_lint_pass.rs:12:1
   |
LL | / declare_tool_lint! {
LL | |     pub clippy::TEST_LINT,
LL | |     Warn,
LL | |     "",
LL | |     report_in_external_macro: true
LL | | }
   | |_^
   |
note: the lint level is defined here
  --> $DIR/lint_without_lint_pass.rs:1:9
   |
LL | #![deny(clippy::internal)]
   |         ^^^^^^^^^^^^^^^^
   = note: `#[deny(clippy::lint_without_lint_pass)]` implied by `#[deny(clippy::internal)]`
   = note: this error originates in the macro `declare_tool_lint` (in Nightly builds, run with -Z macro-backtrace for more info)

error: aborting due to 1 previous error