mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 18:53:39 +00:00
22 lines
477 B
Plaintext
22 lines
477 B
Plaintext
|
error: unused attribute
|
||
|
--> $DIR/cfg-attr-empty-is-unused.rs:7:1
|
||
|
|
|
||
|
LL | #[cfg_attr(FALSE,)]
|
||
|
| ^^^^^^^^^^^^^^^^^^^
|
||
|
|
|
||
|
note: lint level defined here
|
||
|
--> $DIR/cfg-attr-empty-is-unused.rs:5:9
|
||
|
|
|
||
|
LL | #![deny(unused)]
|
||
|
| ^^^^^^
|
||
|
= note: #[deny(unused_attributes)] implied by #[deny(unused)]
|
||
|
|
||
|
error: unused attribute
|
||
|
--> $DIR/cfg-attr-empty-is-unused.rs:10:1
|
||
|
|
|
||
|
LL | #[cfg_attr(TRUE,)]
|
||
|
| ^^^^^^^^^^^^^^^^^^
|
||
|
|
||
|
error: aborting due to 2 previous errors
|
||
|
|