mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
20 lines
634 B
Text
20 lines
634 B
Text
error: the lint `TEST_LINT` is not added to any `LintPass`
|
|
--> $DIR/lint_without_lint_pass.rs:11:1
|
|
|
|
|
LL | / declare_clippy_lint! {
|
|
LL | | pub TEST_LINT,
|
|
LL | | correctness,
|
|
LL | | ""
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
note: lint level 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 a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
|
|
|
error: aborting due to previous error
|
|
|