rust-clippy/tests/ui/missing_doc_impl.stderr

55 lines
1.3 KiB
Text
Raw Normal View History

2020-01-09 00:04:53 +00:00
error: missing documentation for a struct
2024-02-17 12:16:29 +00:00
--> tests/ui/missing_doc_impl.rs:13:1
2020-01-09 00:04:53 +00:00
|
LL | / struct Foo {
LL | | a: isize,
LL | | b: isize,
LL | | }
| |_^
|
= note: `-D clippy::missing-docs-in-private-items` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::missing_docs_in_private_items)]`
2020-01-09 00:04:53 +00:00
error: missing documentation for a struct field
2024-02-17 12:16:29 +00:00
--> tests/ui/missing_doc_impl.rs:14:5
2020-01-09 00:04:53 +00:00
|
LL | a: isize,
| ^^^^^^^^
error: missing documentation for a struct field
2024-02-17 12:16:29 +00:00
--> tests/ui/missing_doc_impl.rs:15:5
2020-01-09 00:04:53 +00:00
|
LL | b: isize,
| ^^^^^^^^
error: missing documentation for a struct field
2024-02-17 12:16:29 +00:00
--> tests/ui/missing_doc_impl.rs:20:5
2020-01-09 00:04:53 +00:00
|
LL | b: isize,
| ^^^^^^^^
error: missing documentation for an associated function
2024-02-17 12:16:29 +00:00
--> tests/ui/missing_doc_impl.rs:67:5
2020-01-09 00:04:53 +00:00
|
LL | / pub fn new() -> Self {
LL | | Foo { a: 0, b: 0 }
LL | | }
| |_____^
2020-01-09 00:04:53 +00:00
error: missing documentation for an associated function
2024-02-17 12:16:29 +00:00
--> tests/ui/missing_doc_impl.rs:70:5
2020-01-09 00:04:53 +00:00
|
LL | fn bar() {}
| ^^^^^^^^^^^
error: missing documentation for an associated function
2024-02-17 12:16:29 +00:00
--> tests/ui/missing_doc_impl.rs:78:5
2020-01-09 00:04:53 +00:00
|
LL | / fn foo2() -> u32 {
LL | | 1
LL | | }
| |_____^
2020-01-09 00:04:53 +00:00
error: aborting due to 7 previous errors
2020-01-09 00:04:53 +00:00