summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/missing_doc.stderr
blob: 1d8007fa5b0fc34f1cf329fc7e80832e41e622af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
error: missing documentation for a type alias
  --> $DIR/missing_doc.rs:16:1
   |
LL | type Typedef = String;
   | ^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::missing-docs-in-private-items` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::missing_docs_in_private_items)]`

error: missing documentation for a module
  --> $DIR/missing_doc.rs:19:1
   |
LL | mod module_no_dox {}
   | ^^^^^^^^^^^^^^^^^^^^

error: missing documentation for a function
  --> $DIR/missing_doc.rs:25:1
   |
LL | fn foo3() {}
   | ^^^^^^^^^^^^

error: missing documentation for an enum
  --> $DIR/missing_doc.rs:39:1
   |
LL | / enum Baz {
LL | |     BazA { a: isize, b: isize },
LL | |     BarB,
LL | | }
   | |_^

error: missing documentation for a variant
  --> $DIR/missing_doc.rs:40:5
   |
LL |     BazA { a: isize, b: isize },
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: missing documentation for a struct field
  --> $DIR/missing_doc.rs:40:12
   |
LL |     BazA { a: isize, b: isize },
   |            ^^^^^^^^

error: missing documentation for a struct field
  --> $DIR/missing_doc.rs:40:22
   |
LL |     BazA { a: isize, b: isize },
   |                      ^^^^^^^^

error: missing documentation for a variant
  --> $DIR/missing_doc.rs:41:5
   |
LL |     BarB,
   |     ^^^^

error: missing documentation for a constant
  --> $DIR/missing_doc.rs:65:1
   |
LL | const FOO: u32 = 0;
   | ^^^^^^^^^^^^^^^^^^^

error: missing documentation for a static
  --> $DIR/missing_doc.rs:74:1
   |
LL | static BAR: u32 = 0;
   | ^^^^^^^^^^^^^^^^^^^^

error: missing documentation for a module
  --> $DIR/missing_doc.rs:83:1
   |
LL | / mod internal_impl {
LL | |     /// dox
LL | |     pub fn documented() {}
LL | |     pub fn undocumented1() {}
...  |
LL | |     }
LL | | }
   | |_^

error: missing documentation for a function
  --> $DIR/missing_doc.rs:88:5
   |
LL |     fn undocumented3() {}
   |     ^^^^^^^^^^^^^^^^^^^^^

error: missing documentation for a function
  --> $DIR/missing_doc.rs:94:9
   |
LL |         fn also_undocumented2() {}
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 13 previous errors