rust/tests/rustdoc-ui/lints/deny-missing-docs-macro.stderr

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

15 lines
319 B
Plaintext
Raw Normal View History

2021-08-06 00:09:25 -05:00
error: missing documentation for a macro
2019-01-12 20:25:00 -06:00
--> $DIR/deny-missing-docs-macro.rs:6:1
|
2019-03-09 06:03:44 -06:00
LL | macro_rules! foo {
| ^^^^^^^^^^^^^^^^
|
2020-01-22 17:57:38 -06:00
note: the lint level is defined here
2019-01-12 20:25:00 -06:00
--> $DIR/deny-missing-docs-macro.rs:3:9
|
LL | #![deny(missing_docs)]
| ^^^^^^^^^^^^
error: aborting due to 1 previous error