Skip to content

Commit 4c41b78

Browse files
authored
Unrolled build for rust-lang#122482
Rollup merge of rust-lang#122482 - weiznich:fix/122446, r=compiler-errors Ungate the `UNKNOWN_OR_MALFORMED_DIAGNOSTIC_ATTRIBUTES` lint This was missed during stablisation of the `#[diagnostic]` attribute namespace. Fixes rust-lang#122446
2 parents fe61575 + 2541111 commit 4c41b78

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
@@ -4355,7 +4355,6 @@ declare_lint! {
43554355
pub UNKNOWN_OR_MALFORMED_DIAGNOSTIC_ATTRIBUTES,
43564356
Warn,
43574357
"unrecognized or malformed diagnostic attribute",
4358-
@feature_gate = sym::diagnostic_namespace;
43594358
}
43604359

43614360
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)