diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-11-22 10:37:43 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-22 10:37:43 +0100 |
| commit | 9aedfd5a3bb4e4b4d900cf19780f8ed892c92af0 (patch) | |
| tree | 496f84baa5e3133c3e1e5e7304f1cfa804e58539 /src/test | |
| parent | 4bec59c93baa71d599a616fda9f1180febb08386 (diff) | |
| parent | 675319e5586817143fef60243d319395ae858ad1 (diff) | |
| download | rust-9aedfd5a3bb4e4b4d900cf19780f8ed892c92af0.tar.gz rust-9aedfd5a3bb4e4b4d900cf19780f8ed892c92af0.zip | |
Rollup merge of #55367 - GuillaumeGomez:private-item-doc-test-lint, r=QuietMisdreavus
lint if a private item has doctests Fixes #55333. r? @QuietMisdreavus
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/rustdoc-ui/private-item-doc-test.rs | 20 | ||||
| -rw-r--r-- | src/test/rustdoc-ui/private-item-doc-test.stderr | 16 |
2 files changed, 36 insertions, 0 deletions
diff --git a/src/test/rustdoc-ui/private-item-doc-test.rs b/src/test/rustdoc-ui/private-item-doc-test.rs new file mode 100644 index 00000000000..5a13fe359f5 --- /dev/null +++ b/src/test/rustdoc-ui/private-item-doc-test.rs @@ -0,0 +1,20 @@ +// Copyright 2018 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +#![deny(private_doc_tests)] + +mod foo { + /// private doc test + /// + /// ``` + /// assert!(false); + /// ``` + fn bar() {} +} diff --git a/src/test/rustdoc-ui/private-item-doc-test.stderr b/src/test/rustdoc-ui/private-item-doc-test.stderr new file mode 100644 index 00000000000..b43add7ea50 --- /dev/null +++ b/src/test/rustdoc-ui/private-item-doc-test.stderr @@ -0,0 +1,16 @@ +error: Documentation test in private item + --> $DIR/private-item-doc-test.rs:14:5 + | +LL | / /// private doc test +LL | | /// +LL | | /// ``` +LL | | /// assert!(false); +LL | | /// ``` + | |___________^ + | +note: lint level defined here + --> $DIR/private-item-doc-test.rs:11:9 + | +LL | #![deny(private_doc_tests)] + | ^^^^^^^^^^^^^^^^^ + |
