2019-12-05 18:00:23 -06:00
|
|
|
error: docs for function returning `Result` missing `# Errors` section
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc_errors.rs:7:1
|
2019-12-05 18:00:23 -06:00
|
|
|
|
|
2022-11-21 13:34:47 -06:00
|
|
|
LL | pub fn pub_fn_missing_errors_header() -> Result<(), ()> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-12-05 18:00:23 -06:00
|
|
|
|
|
|
|
|
= note: `-D clippy::missing-errors-doc` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::missing_errors_doc)]`
|
2019-12-05 18:00:23 -06:00
|
|
|
|
|
|
|
error: docs for function returning `Result` missing `# Errors` section
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc_errors.rs:13:1
|
2019-12-05 18:00:23 -06:00
|
|
|
|
|
2022-11-21 13:34:47 -06:00
|
|
|
LL | pub async fn async_pub_fn_missing_errors_header() -> Result<(), ()> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-02-16 18:17:14 -06:00
|
|
|
|
|
|
|
error: docs for function returning `Result` missing `# Errors` section
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc_errors.rs:19:1
|
2020-02-16 18:17:14 -06:00
|
|
|
|
|
2022-11-21 13:34:47 -06:00
|
|
|
LL | pub fn pub_fn_returning_io_result() -> io::Result<()> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-12-05 18:00:23 -06:00
|
|
|
|
|
|
|
error: docs for function returning `Result` missing `# Errors` section
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc_errors.rs:25:1
|
2020-02-16 18:17:14 -06:00
|
|
|
|
|
2022-11-21 13:34:47 -06:00
|
|
|
LL | pub async fn async_pub_fn_returning_io_result() -> io::Result<()> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-02-16 18:17:14 -06:00
|
|
|
|
|
|
|
error: docs for function returning `Result` missing `# Errors` section
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc_errors.rs:56:5
|
2019-12-05 18:00:23 -06:00
|
|
|
|
|
2022-11-21 13:34:47 -06:00
|
|
|
LL | pub fn pub_method_missing_errors_header() -> Result<(), ()> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-12-05 18:00:23 -06:00
|
|
|
|
|
|
|
error: docs for function returning `Result` missing `# Errors` section
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc_errors.rs:62:5
|
2020-02-16 18:17:14 -06:00
|
|
|
|
|
2022-11-21 13:34:47 -06:00
|
|
|
LL | pub async fn async_pub_method_missing_errors_header() -> Result<(), ()> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-02-16 18:17:14 -06:00
|
|
|
|
|
|
|
error: docs for function returning `Result` missing `# Errors` section
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui/doc_errors.rs:113:5
|
2019-12-05 18:00:23 -06:00
|
|
|
|
|
|
|
|
LL | fn trait_method_missing_errors_header() -> Result<(), ()>;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2020-02-16 18:17:14 -06:00
|
|
|
error: aborting due to 7 previous errors
|
2019-12-05 18:00:23 -06:00
|
|
|
|