summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui-internal/default_lint.stderr
blob: 4735573a47d3fa2b93b8c9093d6d47f6624e0567 (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_DEFAULT` has the default lint description
  --> $DIR/default_lint.rs:17:1
   |
LL | / declare_tool_lint! {
LL | |     pub clippy::TEST_LINT_DEFAULT,
LL | |     Warn,
LL | |     "default lint description",
LL | |     report_in_external_macro: true
LL | | }
   | |_^
   |
note: the lint level is defined here
  --> $DIR/default_lint.rs:1:9
   |
LL | #![deny(clippy::internal)]
   |         ^^^^^^^^^^^^^^^^
   = note: `#[deny(clippy::default_lint)]` implied by `#[deny(clippy::internal)]`
   = note: this error originates in the macro `$crate::declare_tool_lint` (in Nightly builds, run with -Z macro-backtrace for more info)

error: aborting due to previous error