summaryrefslogtreecommitdiffstats
path: root/tests/ui/internal-lints/existing_doc_keyword.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/internal-lints/existing_doc_keyword.stderr')
-rw-r--r--tests/ui/internal-lints/existing_doc_keyword.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/internal-lints/existing_doc_keyword.stderr b/tests/ui/internal-lints/existing_doc_keyword.stderr
new file mode 100644
index 000000000..5110b9be0
--- /dev/null
+++ b/tests/ui/internal-lints/existing_doc_keyword.stderr
@@ -0,0 +1,15 @@
+error: found non-existing keyword `tadam` used in `#[doc(keyword = "...")]`
+ --> $DIR/existing_doc_keyword.rs:10:1
+ |
+LL | #[doc(keyword = "tadam")]
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^
+ |
+ = help: only existing keywords are allowed in core/std
+note: the lint level is defined here
+ --> $DIR/existing_doc_keyword.rs:8:9
+ |
+LL | #![deny(rustc::existing_doc_keyword)]
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: aborting due to previous error
+