rust-clippy/tests/ui/useless_attribute.stderr

17 lines
698 B
Text
Raw Normal View History

2017-08-01 15:54:21 +00:00
error: useless lint attribute
--> $DIR/useless_attribute.rs:5:1
|
2017-08-28 16:16:16 +00:00
5 | #[allow(dead_code, unused_extern_crates)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: if you just forgot a `!`, use: `#![allow(dead_code, unused_extern_crates)]`
2017-08-01 15:54:21 +00:00
|
= note: `-D 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
2018-01-16 16:06:27 +00:00