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