rust/tests/ui/empty_docs.stderr

78 lines
1.5 KiB
Plaintext
Raw Normal View History

2024-02-24 23:55:58 -06:00
error: empty doc comment
2024-02-27 04:18:27 -06:00
--> tests/ui/empty_docs.rs:6:5
2024-02-24 23:55:58 -06:00
|
2024-02-25 12:33:16 -06:00
LL | //!
| ^^^
2024-02-24 23:55:58 -06:00
|
= help: consider removing or filling it
= note: `-D clippy::empty-docs` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::empty_docs)]`
error: empty doc comment
2024-02-27 04:18:27 -06:00
--> tests/ui/empty_docs.rs:14:5
2024-02-24 23:55:58 -06:00
|
2024-02-25 12:33:16 -06:00
LL | ///
| ^^^
2024-02-24 23:55:58 -06:00
|
= help: consider removing or filling it
2024-02-25 07:04:58 -06:00
error: empty doc comment
2024-02-27 04:18:27 -06:00
--> tests/ui/empty_docs.rs:16:9
2024-02-25 07:04:58 -06:00
|
2024-02-25 12:33:16 -06:00
LL | ///
| ^^^
2024-02-25 07:04:58 -06:00
|
= help: consider removing or filling it
2024-02-24 23:55:58 -06:00
error: empty doc comment
2024-02-27 04:18:27 -06:00
--> tests/ui/empty_docs.rs:27:5
2024-02-24 23:55:58 -06:00
|
2024-02-25 12:33:16 -06:00
LL | #[doc = ""]
| ^^^^^^^^^^^
|
= help: consider removing or filling it
error: empty doc comment
2024-02-27 04:18:27 -06:00
--> tests/ui/empty_docs.rs:30:5
2024-02-25 12:33:16 -06:00
|
LL | / #[doc = ""]
LL | | #[doc = ""]
| |_______________^
|
= help: consider removing or filling it
error: empty doc comment
2024-02-27 04:18:27 -06:00
--> tests/ui/empty_docs.rs:37:5
2024-02-25 12:33:16 -06:00
|
LL | ///
2024-02-25 06:11:14 -06:00
| ^^^
2024-02-24 23:55:58 -06:00
|
= help: consider removing or filling it
2024-02-25 07:04:58 -06:00
error: empty doc comment
2024-02-27 04:18:27 -06:00
--> tests/ui/empty_docs.rs:50:13
2024-02-25 12:33:16 -06:00
|
LL | /*! */
| ^^^^^^
|
= help: consider removing or filling it
error: empty doc comment
2024-02-27 04:18:27 -06:00
--> tests/ui/empty_docs.rs:58:13
2024-02-25 12:33:16 -06:00
|
LL | ///
| ^^^
|
= help: consider removing or filling it
error: empty doc comment
2024-02-27 04:18:27 -06:00
--> tests/ui/empty_docs.rs:66:9
2024-02-25 07:04:58 -06:00
|
2024-02-25 12:33:16 -06:00
LL | ///
| ^^^
2024-02-25 07:04:58 -06:00
|
= help: consider removing or filling it
2024-02-25 12:33:16 -06:00
error: aborting due to 9 previous errors
2024-02-24 23:55:58 -06:00