diff options
Diffstat (limited to 'src/test/rustdoc-ui/check.stderr')
-rw-r--r-- | src/test/rustdoc-ui/check.stderr | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/src/test/rustdoc-ui/check.stderr b/src/test/rustdoc-ui/check.stderr deleted file mode 100644 index d379f33f2..000000000 --- a/src/test/rustdoc-ui/check.stderr +++ /dev/null @@ -1,57 +0,0 @@ -warning: missing documentation for the crate - --> $DIR/check.rs:5:1 - | -LL | / #![feature(rustdoc_missing_doc_code_examples)] -LL | | -LL | | -LL | | -... | -LL | | -LL | | pub fn foo() {} - | |_______________^ - | -note: the lint level is defined here - --> $DIR/check.rs:9:9 - | -LL | #![warn(missing_docs)] - | ^^^^^^^^^^^^ - -warning: missing documentation for a function - --> $DIR/check.rs:12:1 - | -LL | pub fn foo() {} - | ^^^^^^^^^^^^ - -warning: no documentation found for this crate's top-level module - | - = help: The following guide may be of use: - https://doc.rust-lang.org/$CHANNEL/rustdoc/how-to-write-documentation.html -note: the lint level is defined here - --> $DIR/check.rs:10:9 - | -LL | #![warn(rustdoc::all)] - | ^^^^^^^^^^^^ - = note: `#[warn(rustdoc::missing_crate_level_docs)]` implied by `#[warn(rustdoc::all)]` - -warning: missing code example in this documentation - --> $DIR/check.rs:5:1 - | -LL | / #![feature(rustdoc_missing_doc_code_examples)] -LL | | -LL | | -LL | | -... | -LL | | -LL | | pub fn foo() {} - | |_______________^ - | - = note: `#[warn(rustdoc::missing_doc_code_examples)]` implied by `#[warn(rustdoc::all)]` - -warning: missing code example in this documentation - --> $DIR/check.rs:12:1 - | -LL | pub fn foo() {} - | ^^^^^^^^^^^^^^^ - -warning: 5 warnings emitted - |