rust/src/test/rustdoc-ui/deny-missing-docs-crate.stderr

23 lines
520 B
Plaintext
Raw Normal View History

error: missing documentation for crate
2019-01-12 20:25:00 -06:00
--> $DIR/deny-missing-docs-crate.rs:1:1
|
LL | / #![deny(missing_docs)] //~ ERROR
LL | |
LL | | pub struct Foo; //~ ERROR
| |_______________^
|
note: lint level defined here
2019-01-12 20:25:00 -06:00
--> $DIR/deny-missing-docs-crate.rs:1:9
|
LL | #![deny(missing_docs)] //~ ERROR
| ^^^^^^^^^^^^
error: missing documentation for a struct
2019-01-12 20:25:00 -06:00
--> $DIR/deny-missing-docs-crate.rs:3:1
|
LL | pub struct Foo; //~ ERROR
| ^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors