about summary refs log tree commit diff
path: root/tests/ui/doc_errors.stderr
blob: f1d321cf909cc2d6e0a34cc61e875a21e03dc2d5 (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
error: docs for function returning `Result` missing `# Errors` section
  --> $DIR/doc_errors.rs:5: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:10: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:29: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:47:5
   |
LL |     fn trait_method_missing_errors_header() -> Result<(), ()>;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 4 previous errors