summary refs log tree commit diff
path: root/src/test/ui/privacy/decl-macro.stderr
blob: ae2e1b4b644a384b38348d48d90fd2b43f6cae60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0603]: macro `mac` is private
  --> $DIR/decl-macro.rs:8:8
   |
LL |     m::mac!();
   |        ^^^ this macro is private
   |
note: the macro `mac` is defined here
  --> $DIR/decl-macro.rs:4:5
   |
LL |     macro mac() {}
   |     ^^^^^^^^^^^

error: aborting due to previous error

For more information about this error, try `rustc --explain E0603`.