rust-clippy/tests/ui/useless_attribute.stderr
2017-05-03 12:51:47 +02:00

14 lines
351 B
Text

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