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