2018-08-08 07:28:26 -05:00
|
|
|
error: unused macro definition
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unused-macro.rs:5:1
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | / macro unused { //~ ERROR: unused macro definition
|
|
|
|
LL | | () => {}
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
note: lint level defined here
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unused-macro.rs:2:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | #![deny(unused_macros)]
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: unused macro definition
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unused-macro.rs:15:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | / macro unused { //~ ERROR: unused macro definition
|
|
|
|
LL | | () => {}
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
note: lint level defined here
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unused-macro.rs:14:12
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | #[deny(unused_macros)]
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: unused macro definition
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unused-macro.rs:21:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | / pub(crate) macro unused { //~ ERROR: unused macro definition
|
|
|
|
LL | | () => {}
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|