mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
33 lines
738 B
Plaintext
33 lines
738 B
Plaintext
error: unused macro definition: `unused`
|
|
--> $DIR/unused-macros-decl.rs:7:7
|
|
|
|
|
LL | macro unused {
|
|
| ^^^^^^
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/unused-macros-decl.rs:2:9
|
|
|
|
|
LL | #![deny(unused_macros)]
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: unused macro definition: `unused`
|
|
--> $DIR/unused-macros-decl.rs:17:11
|
|
|
|
|
LL | macro unused {
|
|
| ^^^^^^
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/unused-macros-decl.rs:16:12
|
|
|
|
|
LL | #[deny(unused_macros)]
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: unused macro definition: `unused`
|
|
--> $DIR/unused-macros-decl.rs:23:22
|
|
|
|
|
LL | pub(crate) macro unused {
|
|
| ^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|