rust/tests/ui/privacy/decl-macro.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
351 B
Plaintext
Raw Normal View History

error[E0603]: macro `mac` is private
--> $DIR/decl-macro.rs:8:8
|
2019-03-09 12:03:44 +00:00
LL | m::mac!();
| ^^^ private macro
|
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`.