]> git.lizzy.rs Git - rust.git/blob - tests/ui/useless_attribute.stderr
Add license header to Rust files
[rust.git] / tests / ui / useless_attribute.stderr
1 error: useless lint attribute
2   --> $DIR/useless_attribute.rs:15:1
3    |
4 15 | #[allow(dead_code)]
5    | ^^^^^^^^^^^^^^^^^^^ help: if you just forgot a `!`, use: `#![allow(dead_code)]`
6    |
7    = note: `-D clippy::useless-attribute` implied by `-D warnings`
8
9 error: useless lint attribute
10   --> $DIR/useless_attribute.rs:16:1
11    |
12 16 | #[cfg_attr(feature = "cargo-clippy", allow(dead_code))]
13    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: if you just forgot a `!`, use: `#![cfg_attr(feature = "cargo-clippy", allow(dead_code))`
14
15 error: aborting due to 2 previous errors
16