rust/tests/ui/useless_attribute.stderr

9 lines
306 B
Text
Raw Normal View History

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