2017-08-01 15:54:21 +00:00
|
|
|
error: useless lint attribute
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/useless_attribute.rs:8: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`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::useless_attribute)]`
|
2017-08-01 15:54:21 +00:00
|
|
|
|
2018-02-06 21:14:23 +00:00
|
|
|
error: useless lint attribute
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/useless_attribute.rs:9:1
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2024-02-14 16:51:45 +00:00
|
|
|
LL | #[cfg_attr(clippy, allow(dead_code))]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: if you just forgot a `!`, use: `#![cfg_attr(clippy, allow(dead_code)`
|
2018-02-06 21:14:23 +00:00
|
|
|
|
2020-01-08 16:31:27 +00:00
|
|
|
error: useless lint attribute
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/useless_attribute.rs:20:5
|
2020-01-08 16:31:27 +00: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 16:06:27 +00:00
|
|
|
|