rust/tests/rustdoc-ui/deny-missing-docs-crate.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
490 B
Plaintext
Raw Normal View History

2020-03-22 17:18:30 -05:00
error: missing documentation for the crate
2019-01-13 02:25:00 +00:00
--> $DIR/deny-missing-docs-crate.rs:1:1
|
2019-03-09 15:03:44 +03:00
LL | / #![deny(missing_docs)]
LL | |
2019-03-09 15:03:44 +03:00
LL | | pub struct Foo;
| |_______________^
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
2019-01-13 02:25:00 +00:00
--> $DIR/deny-missing-docs-crate.rs:1:9
|
2019-03-09 15:03:44 +03:00
LL | #![deny(missing_docs)]
| ^^^^^^^^^^^^
error: missing documentation for a struct
2019-01-13 02:25:00 +00:00
--> $DIR/deny-missing-docs-crate.rs:3:1
|
2019-03-09 15:03:44 +03:00
LL | pub struct Foo;
| ^^^^^^^^^^^^^^
error: aborting due to 2 previous errors