rust-clippy/tests/ui/useless_attribute.stderr

17 lines
353 B
Text
Raw Normal View History

error: useless lint attribute
--> $DIR/useless_attribute.rs:5:1
|
2017-02-08 13:58:07 +00:00
5 | #[allow(dead_code)]
| ^^^^^^^^^^^^^^^^^^^
|
note: lint level defined here
--> $DIR/useless_attribute.rs:3:9
|
3 | #![deny(useless_attribute)]
| ^^^^^^^^^^^^^^^^^
help: if you just forgot a `!`, use
2017-02-08 13:58:07 +00:00
| #![allow(dead_code)]
error: aborting due to previous error