]> git.proxmox.com Git - rustc.git/blame - src/test/ui/lint/unused/unused-macros.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / lint / unused / unused-macros.stderr
CommitLineData
04454e1e
FG
1error: unused macro definition: `unused`
2 --> $DIR/unused-macros.rs:6:14
3 |
4LL | macro_rules! unused {
5 | ^^^^^^
6 |
7note: the lint level is defined here
8 --> $DIR/unused-macros.rs:1:9
9 |
10LL | #![deny(unused_macros)]
11 | ^^^^^^^^^^^^^
12
13error: unused macro definition: `m`
14 --> $DIR/unused-macros.rs:13:22
15 |
16LL | macro_rules! m {
17 | ^
18
19error: unused macro definition: `unused`
20 --> $DIR/unused-macros.rs:26:18
21 |
22LL | macro_rules! unused {
23 | ^^^^^^
24 |
25note: the lint level is defined here
26 --> $DIR/unused-macros.rs:25:12
27 |
28LL | #[deny(unused_macros)]
29 | ^^^^^^^^^^^^^
30
31error: aborting due to 3 previous errors
32