summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-ui/lints/check.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rustdoc-ui/lints/check.rs')
-rw-r--r--tests/rustdoc-ui/lints/check.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/rustdoc-ui/lints/check.rs b/tests/rustdoc-ui/lints/check.rs
new file mode 100644
index 000000000..e389a81bb
--- /dev/null
+++ b/tests/rustdoc-ui/lints/check.rs
@@ -0,0 +1,15 @@
+// check-pass
+// compile-flags: -Z unstable-options --check
+// normalize-stderr-test: "nightly|beta|1\.[0-9][0-9]\.[0-9]" -> "$$CHANNEL"
+
+#![feature(rustdoc_missing_doc_code_examples)]
+//~^ WARN
+//~^^ WARN
+
+#![warn(missing_docs)]
+#![warn(rustdoc::missing_doc_code_examples)]
+#![warn(rustdoc::all)]
+
+pub fn foo() {}
+//~^ WARN
+//~^^ WARN