rust/tests/ui/lint_without_lint_pass.stderr

21 lines
634 B
Text
Raw Normal View History

2018-10-12 08:09:04 +02:00
error: the lint `TEST_LINT` is not added to any `LintPass`
2018-10-29 20:55:52 +01:00
--> $DIR/lint_without_lint_pass.rs:12:1
2018-10-12 08:09:04 +02:00
|
2018-10-29 20:55:52 +01:00
12 | / declare_clippy_lint! {
2018-10-12 08:09:04 +02:00
13 | | pub TEST_LINT,
14 | | correctness,
15 | | ""
16 | | }
| |_^
|
note: lint level defined here
--> $DIR/lint_without_lint_pass.rs:1:9
|
1 | #![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