summaryrefslogtreecommitdiffstats
path: root/src/test/ui-fulldeps/internal-lints/existing_doc_keyword.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui-fulldeps/internal-lints/existing_doc_keyword.stderr')
-rw-r--r--src/test/ui-fulldeps/internal-lints/existing_doc_keyword.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui-fulldeps/internal-lints/existing_doc_keyword.stderr b/src/test/ui-fulldeps/internal-lints/existing_doc_keyword.stderr
new file mode 100644
index 000000000..bc9fcdd7b
--- /dev/null
+++ b/src/test/ui-fulldeps/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")]
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^
+ |
+note: the lint level is defined here
+ --> $DIR/existing_doc_keyword.rs:8:9
+ |
+LL | #![deny(rustc::existing_doc_keyword)]
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ = help: only existing keywords are allowed in core/std
+
+error: aborting due to previous error
+