summary refs log tree commit diff
path: root/src/test/ui/lint/missing-doc-private-macro.stderr
blob: a5d39faf40562ceef142a03a9d104830d388c26f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: missing documentation for macro
  --> $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)]
   |         ^^^^^^^^^^^^

error: missing documentation for macro
  --> $DIR/missing-doc-private-macro.rs:37:1
   |
LL | pub macro top_level_pub_macro {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 2 previous errors