]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/unused/unused-macros.stderr
Rollup merge of #103236 - tspiteri:redoc-int-adc-sbb, r=m-ou-se
[rust.git] / tests / ui / lint / unused / unused-macros.stderr
1 error: unused macro definition: `unused`
2   --> $DIR/unused-macros.rs:6:14
3    |
4 LL | macro_rules! unused {
5    |              ^^^^^^
6    |
7 note: the lint level is defined here
8   --> $DIR/unused-macros.rs:1:9
9    |
10 LL | #![deny(unused_macros)]
11    |         ^^^^^^^^^^^^^
12
13 error: unused macro definition: `m`
14   --> $DIR/unused-macros.rs:13:22
15    |
16 LL |         macro_rules! m {
17    |                      ^
18
19 error: unused macro definition: `unused`
20   --> $DIR/unused-macros.rs:26:18
21    |
22 LL |     macro_rules! unused {
23    |                  ^^^^^^
24    |
25 note: the lint level is defined here
26   --> $DIR/unused-macros.rs:25:12
27    |
28 LL |     #[deny(unused_macros)]
29    |            ^^^^^^^^^^^^^
30
31 error: aborting due to 3 previous errors
32