2017-08-01 17:54:21 +02:00
|
|
|
error: useless lint attribute
|
2019-05-17 12:42:43 +02:00
|
|
|
--> $DIR/useless_attribute.rs:6:1
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | #[allow(dead_code)]
|
2018-10-06 18:18:06 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: if you just forgot a `!`, use: `#![allow(dead_code)]`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::useless-attribute` implied by `-D warnings`
|
2017-08-01 17:54:21 +02:00
|
|
|
|
2018-02-06 22:14:23 +01:00
|
|
|
error: useless lint attribute
|
2019-05-17 12:42:43 +02:00
|
|
|
--> $DIR/useless_attribute.rs:7:1
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | #[cfg_attr(feature = "cargo-clippy", allow(dead_code))]
|
2018-10-11 12:16:22 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: if you just forgot a `!`, use: `#![cfg_attr(feature = "cargo-clippy", allow(dead_code)`
|
2018-02-06 22:14:23 +01:00
|
|
|
|
2018-12-11 00:59:59 +01:00
|
|
|
error: aborting due to 2 previous errors
|
2018-01-16 17:06:27 +01:00
|
|
|
|