rust-clippy/tests/ui/useless_attribute.stderr

17 lines
574 B
Text
Raw Normal View History

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