Skip to content

Commit 50eb3a8

Browse files
Only deny doc_keyword in std and set it as "allow" by default
1 parent 0105e4a commit 50eb3a8

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

compiler/rustc_lint/src/internal.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ impl EarlyLintPass for LintPassImpl {
270270

271271
declare_tool_lint! {
272272
pub rustc::EXISTING_DOC_KEYWORD,
273-
Deny,
273+
Allow,
274274
"Check that documented keywords in std and core actually exist",
275275
report_in_external_macro: true
276276
}

library/std/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@
212212
all(target_vendor = "fortanix", target_env = "sgx"),
213213
feature(slice_index_methods, coerce_unsized, sgx_platform)
214214
)]
215+
#![deny(rustc::existing_doc_keyword)]
215216
#![cfg_attr(all(test, target_vendor = "fortanix", target_env = "sgx"), feature(fixed_size_array))]
216217
// std is implemented with unstable features, many of which are internal
217218
// compiler details that will never be stable

src/test/ui-fulldeps/internal-lints/existing_doc_keyword.rs

+2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,7 @@
55

66
#![crate_type = "lib"]
77

8+
#![deny(rustc::existing_doc_keyword)]
9+
810
#[doc(keyword = "tadam")] //~ ERROR
911
mod tadam {}

src/test/ui-fulldeps/internal-lints/existing_doc_keyword.stderr

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
error: Found non-existing keyword `tadam` used in `#[doc(keyword = "...")]`
2-
--> $DIR/existing_doc_keyword.rs:8:1
2+
--> $DIR/existing_doc_keyword.rs:10:1
33
|
44
LL | #[doc(keyword = "tadam")]
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^
66
|
7-
= note: `#[deny(rustc::existing_doc_keyword)]` on by default
7+
note: the lint level is defined here
8+
--> $DIR/existing_doc_keyword.rs:8:9
9+
|
10+
LL | #![deny(rustc::existing_doc_keyword)]
11+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
812
= help: only existing keywords are allowed in core/std
913

1014
error: aborting due to previous error

0 commit comments

Comments
 (0)