mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
16 lines
582 B
Text
16 lines
582 B
Text
error: useless lint attribute
|
|
--> $DIR/useless_attribute.rs:7:1
|
|
|
|
|
LL | #[allow(dead_code)]
|
|
| ^^^^^^^^^^^^^^^^^^^ help: if you just forgot a `!`, use: `#![allow(dead_code)]`
|
|
|
|
|
= note: `-D clippy::useless-attribute` implied by `-D warnings`
|
|
|
|
error: useless lint attribute
|
|
--> $DIR/useless_attribute.rs:8:1
|
|
|
|
|
LL | #[cfg_attr(feature = "cargo-clippy", allow(dead_code))]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: if you just forgot a `!`, use: `#![cfg_attr(feature = "cargo-clippy", allow(dead_code)`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|