rust-clippy/tests/ui/missing_doc_impl.stderr

108 lines
2.4 KiB
Text
Raw Normal View History

2020-01-09 00:04:53 +00:00
error: missing documentation for a struct
--> $DIR/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`
error: missing documentation for a struct field
--> $DIR/missing_doc_impl.rs:14:5
2020-01-09 00:04:53 +00:00
|
LL | a: isize,
| ^^^^^^^^
error: missing documentation for a struct field
--> $DIR/missing_doc_impl.rs:15:5
2020-01-09 00:04:53 +00:00
|
LL | b: isize,
| ^^^^^^^^
error: missing documentation for a struct
--> $DIR/missing_doc_impl.rs:18:1
2020-01-09 00:04:53 +00:00
|
LL | / pub struct PubFoo {
LL | | pub a: isize,
LL | | b: isize,
LL | | }
| |_^
error: missing documentation for a struct field
--> $DIR/missing_doc_impl.rs:19:5
2020-01-09 00:04:53 +00:00
|
LL | pub a: isize,
| ^^^^^^^^^^^^
error: missing documentation for a struct field
--> $DIR/missing_doc_impl.rs:20:5
2020-01-09 00:04:53 +00:00
|
LL | b: isize,
| ^^^^^^^^
error: missing documentation for a trait
--> $DIR/missing_doc_impl.rs:43:1
2020-01-09 00:04:53 +00:00
|
LL | / pub trait C {
LL | | fn foo(&self);
LL | | fn foo_with_impl(&self) {}
LL | | }
| |_^
error: missing documentation for an associated function
--> $DIR/missing_doc_impl.rs:44:5
2020-01-09 00:04:53 +00:00
|
LL | fn foo(&self);
| ^^^^^^^^^^^^^^
error: missing documentation for an associated function
--> $DIR/missing_doc_impl.rs:45:5
2020-01-09 00:04:53 +00:00
|
LL | fn foo_with_impl(&self) {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: missing documentation for an associated type
--> $DIR/missing_doc_impl.rs:55:5
2020-01-09 00:04:53 +00:00
|
LL | type AssociatedType;
| ^^^^^^^^^^^^^^^^^^^^
error: missing documentation for an associated type
--> $DIR/missing_doc_impl.rs:56:5
2020-01-09 00:04:53 +00:00
|
LL | type AssociatedTypeDef = Self;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: missing documentation for an associated function
--> $DIR/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
--> $DIR/missing_doc_impl.rs:70:5
2020-01-09 00:04:53 +00:00
|
LL | fn bar() {}
| ^^^^^^^^^^^
error: missing documentation for an associated function
--> $DIR/missing_doc_impl.rs:74:5
2020-01-09 00:04:53 +00:00
|
LL | pub fn foo() {}
| ^^^^^^^^^^^^^^^
error: missing documentation for an associated function
--> $DIR/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 15 previous errors