rust-clippy/tests/ui/useless_attribute.stderr

17 lines
584 B
Text
Raw Normal View History

2017-08-01 15:54:21 +00:00
error: useless lint attribute
2018-12-10 05:27:19 +00:00
--> $DIR/useless_attribute.rs:12:1
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | #[allow(dead_code)]
2018-10-06 16:18:06 +00:00
| ^^^^^^^^^^^^^^^^^^^ help: if you just forgot a `!`, use: `#![allow(dead_code)]`
|
= note: `-D clippy::useless-attribute` implied by `-D warnings`
2017-08-01 15:54:21 +00:00
error: useless lint attribute
2018-12-10 05:27:19 +00:00
--> $DIR/useless_attribute.rs:13:1
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | #[cfg_attr(feature = "cargo-clippy", allow(dead_code))]
2018-10-11 10:16:22 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 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