mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-04 13:08:33 +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
|
|
|