rust-clippy/tests/ui/doc_errors.stderr

48 lines
1.9 KiB
Text
Raw Normal View History

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