Skip to content

Commit 2541111

Browse files
committed
Ungate the UNKNOWN_OR_MALFORMED_DIAGNOSTIC_ATTRIBUTES lint
This was missed during stablisation of the `#[diagnostic]` attribute namespace. Fixes #122446
1 parent 6f3eb1c commit 2541111

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

compiler/rustc_lint_defs/src/builtin.rs

-1
Original file line numberDiff line numberDiff line change
@@ -4341,7 +4341,6 @@ declare_lint! {
43414341
pub UNKNOWN_OR_MALFORMED_DIAGNOSTIC_ATTRIBUTES,
43424342
Warn,
43434343
"unrecognized or malformed diagnostic attribute",
4344-
@feature_gate = sym::diagnostic_namespace;
43454344
}
43464345

43474346
declare_lint! {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#![deny(unknown_or_malformed_diagnostic_attributes)]
2+
3+
#[diagnostic::unknown_attribute]
4+
//~^ERROR unknown diagnostic attribute
5+
struct Foo;
6+
7+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
error: unknown diagnostic attribute
2+
--> $DIR/deny_malformed_attribute.rs:3:15
3+
|
4+
LL | #[diagnostic::unknown_attribute]
5+
| ^^^^^^^^^^^^^^^^^
6+
|
7+
note: the lint level is defined here
8+
--> $DIR/deny_malformed_attribute.rs:1:9
9+
|
10+
LL | #![deny(unknown_or_malformed_diagnostic_attributes)]
11+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12+
13+
error: aborting due to 1 previous error
14+

0 commit comments

Comments
 (0)