summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/doc_errors.stderr
blob: c7b616e2897087c01ee59976e37fe287afb6dbbc (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
error: docs for function returning `Result` missing `# Errors` section
  --> $DIR/doc_errors.rs:7:1
   |
LL | / pub fn pub_fn_missing_errors_header() -> Result<(), ()> {
LL | |     unimplemented!();
LL | | }
   | |_^
   |
   = note: `-D clippy::missing-errors-doc` implied by `-D warnings`

error: docs for function returning `Result` missing `# Errors` section
  --> $DIR/doc_errors.rs:11:1
   |
LL | / pub async fn async_pub_fn_missing_errors_header() -> Result<(), ()> {
LL | |     unimplemented!();
LL | | }
   | |_^

error: docs for function returning `Result` missing `# Errors` section
  --> $DIR/doc_errors.rs:16:1
   |
LL | / pub fn pub_fn_returning_io_result() -> io::Result<()> {
LL | |     unimplemented!();
LL | | }
   | |_^

error: docs for function returning `Result` missing `# Errors` section
  --> $DIR/doc_errors.rs:21:1
   |
LL | / pub async fn async_pub_fn_returning_io_result() -> io::Result<()> {
LL | |     unimplemented!();
LL | | }
   | |_^

error: docs for function returning `Result` missing `# Errors` section
  --> $DIR/doc_errors.rs:51:5
   |
LL | /     pub fn pub_method_missing_errors_header() -> Result<(), ()> {
LL | |         unimplemented!();
LL | |     }
   | |_____^

error: docs for function returning `Result` missing `# Errors` section
  --> $DIR/doc_errors.rs:56:5
   |
LL | /     pub async fn async_pub_method_missing_errors_header() -> Result<(), ()> {
LL | |         unimplemented!();
LL | |     }
   | |_____^

error: docs for function returning `Result` missing `# Errors` section
  --> $DIR/doc_errors.rs:85:5
   |
LL |     fn trait_method_missing_errors_header() -> Result<(), ()>;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 7 previous errors