summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/pub_crate_missing_docs/pub_crate_missing_doc.stderr
blob: a474187050c17c7a7d0c0da70606ade5f618b6c3 (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
error: missing documentation for a function
  --> $DIR/pub_crate_missing_doc.rs:12:5
   |
LL |     pub(crate) fn crate_no_docs() {}
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::missing-docs-in-private-items` implied by `-D warnings`

error: missing documentation for a function
  --> $DIR/pub_crate_missing_doc.rs:15:5
   |
LL |     pub(super) fn super_no_docs() {}
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: missing documentation for a function
  --> $DIR/pub_crate_missing_doc.rs:23:9
   |
LL |         pub(crate) fn sub_crate_no_docs() {}
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: missing documentation for a struct field
  --> $DIR/pub_crate_missing_doc.rs:33:9
   |
LL |         pub(crate) crate_field_no_docs: (),
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: missing documentation for a struct
  --> $DIR/pub_crate_missing_doc.rs:39:5
   |
LL | /     pub(crate) struct CrateStructNoDocs {
LL | |         /// some docs
LL | |         pub(crate) crate_field_with_docs: (),
LL | |         pub(crate) crate_field_no_docs: (),
...  |
LL | |         priv_field_no_docs: (),
LL | |     }
   | |_____^

error: missing documentation for a struct field
  --> $DIR/pub_crate_missing_doc.rs:42:9
   |
LL |         pub(crate) crate_field_no_docs: (),
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: missing documentation for a type alias
  --> $DIR/pub_crate_missing_doc.rs:51:1
   |
LL | type CrateTypedefNoDocs = String;
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 7 previous errors