rust-clippy/tests/ui/useless_attribute.stderr

9 lines
306 B
Text
Raw Normal View History

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