rust/tests/ui/lint/missing-doc-private-macro.stderr

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

21 lines
533 B
Plaintext
Raw Normal View History

2021-08-06 05:09:25 +00:00
error: missing documentation for a macro
2021-07-08 00:55:09 +00:00
--> $DIR/missing-doc-private-macro.rs:31:5
|
LL | macro_rules! exported_to_top_level {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: the lint level is defined here
--> $DIR/missing-doc-private-macro.rs:5:9
|
LL | #![deny(missing_docs)]
| ^^^^^^^^^^^^
2021-08-06 05:09:25 +00:00
error: missing documentation for a macro
2021-07-08 00:55:09 +00:00
--> $DIR/missing-doc-private-macro.rs:37:1
|
LL | pub macro top_level_pub_macro {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors