rust-clippy/tests/ui-internal/default_deprecation_reason.stderr

23 lines
773 B
Text
Raw Normal View History

error: the lint `COOL_LINT_DEFAULT` has the default deprecation reason
2024-02-17 12:16:29 +00:00
--> tests/ui-internal/default_deprecation_reason.rs:8:1
|
LL | / declare_deprecated_lint! {
LL | | /// ### What it does
LL | | /// Nothing. This lint has been deprecated.
LL | | ///
... |
LL | | "default deprecation note"
LL | | }
| |_^
|
note: the lint level is defined here
2024-02-17 12:16:29 +00:00
--> tests/ui-internal/default_deprecation_reason.rs:1:9
|
LL | #![deny(clippy::internal)]
| ^^^^^^^^^^^^^^^^
= note: `#[deny(clippy::default_deprecation_reason)]` implied by `#[deny(clippy::internal)]`
= note: this error originates in the macro `declare_deprecated_lint` (in Nightly builds, run with -Z macro-backtrace for more info)
2023-11-21 19:26:31 +00:00
error: aborting due to 1 previous error