2017-08-01 10:54:21 -05:00
|
|
|
error: useless lint attribute
|
2022-11-19 12:13:17 -06:00
|
|
|
--> $DIR/useless_attribute.rs:9:1
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | #[allow(dead_code)]
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: if you just forgot a `!`, use: `#![allow(dead_code)]`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::useless-attribute` implied by `-D warnings`
|
2017-08-01 10:54:21 -05:00
|
|
|
|
2018-02-06 15:14:23 -06:00
|
|
|
error: useless lint attribute
|
2022-11-19 12:13:17 -06:00
|
|
|
--> $DIR/useless_attribute.rs:10:1
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | #[cfg_attr(feature = "cargo-clippy", allow(dead_code))]
|
2018-10-11 05:16:22 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: if you just forgot a `!`, use: `#![cfg_attr(feature = "cargo-clippy", allow(dead_code)`
|
2018-02-06 15:14:23 -06:00
|
|
|
|
2020-01-08 10:31:27 -06:00
|
|
|
error: useless lint attribute
|
2022-11-19 12:13:17 -06:00
|
|
|
--> $DIR/useless_attribute.rs:21:5
|
2020-01-08 10:31:27 -06:00
|
|
|
|
|
|
|
|
LL | #[allow(clippy::almost_swapped)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: if you just forgot a `!`, use: `#![allow(clippy::almost_swapped)]`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|