mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
32 lines
1 KiB
Text
32 lines
1 KiB
Text
error: `extract_msrv_attr!` macro missing from `LateLintPass` implementation
|
|
--> $DIR/invalid_msrv_attr_impl.rs:30:1
|
|
|
|
|
LL | impl LateLintPass<'_> for Pass {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/invalid_msrv_attr_impl.rs:3:9
|
|
|
|
|
LL | #![deny(clippy::internal)]
|
|
| ^^^^^^^^^^^^^^^^
|
|
= note: `#[deny(clippy::missing_msrv_attr_impl)]` implied by `#[deny(clippy::internal)]`
|
|
help: add `extract_msrv_attr!(LateContext)` to the `LateLintPass` implementation
|
|
|
|
|
LL + impl LateLintPass<'_> for Pass {
|
|
LL + extract_msrv_attr!(LateContext);
|
|
|
|
|
|
|
error: `extract_msrv_attr!` macro missing from `EarlyLintPass` implementation
|
|
--> $DIR/invalid_msrv_attr_impl.rs:34:1
|
|
|
|
|
LL | impl EarlyLintPass for Pass {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: add `extract_msrv_attr!(EarlyContext)` to the `EarlyLintPass` implementation
|
|
|
|
|
LL + impl EarlyLintPass for Pass {
|
|
LL + extract_msrv_attr!(EarlyContext);
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|