]> git.lizzy.rs Git - rust.git/blob - tests/ui/privacy/decl-macro.stderr
Rollup merge of #106106 - jyn514:remote-tracking-branch, r=Mark-Simulacrum
[rust.git] / tests / ui / privacy / decl-macro.stderr
1 error[E0603]: macro `mac` is private
2   --> $DIR/decl-macro.rs:8:8
3    |
4 LL |     m::mac!();
5    |        ^^^ private macro
6    |
7 note: the macro `mac` is defined here
8   --> $DIR/decl-macro.rs:4:5
9    |
10 LL |     macro mac() {}
11    |     ^^^^^^^^^^^
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0603`.