Skip to content

Commit 363addc

Browse files
Gate repr(Rust) correctly on non-ADT items
1 parent 0f6e1ae commit 363addc

File tree

3 files changed

+73
-1
lines changed

3 files changed

+73
-1
lines changed

compiler/rustc_passes/src/check_attr.rs

+9
Original file line numberDiff line numberDiff line change
@@ -1791,6 +1791,15 @@ impl<'tcx> CheckAttrVisitor<'tcx> {
17911791
match hint.name_or_empty() {
17921792
sym::Rust => {
17931793
is_explicit_rust = true;
1794+
match target {
1795+
Target::Struct | Target::Union | Target::Enum => continue,
1796+
_ => {
1797+
self.dcx().emit_err(errors::AttrApplication::StructEnumUnion {
1798+
hint_span: hint.span(),
1799+
span,
1800+
});
1801+
}
1802+
}
17941803
}
17951804
sym::C => {
17961805
is_c = true;

tests/ui/feature-gates/issue-43106-gating-of-builtin-attrs-error.rs

+24
Original file line numberDiff line numberDiff line change
@@ -164,4 +164,28 @@ mod repr {
164164
//~| NOTE not a struct, enum, or union
165165
}
166166

167+
168+
#[repr(Rust)]
169+
//~^ ERROR: attribute should be applied to a struct, enum, or union
170+
mod repr_rust {
171+
//~^ NOTE not a struct, enum, or union
172+
mod inner { #![repr(Rust)] }
173+
//~^ ERROR: attribute should be applied to a struct, enum, or union
174+
//~| NOTE not a struct, enum, or union
175+
176+
#[repr(Rust)] fn f() { }
177+
//~^ ERROR: attribute should be applied to a struct, enum, or union
178+
//~| NOTE not a struct, enum, or union
179+
180+
struct S;
181+
182+
#[repr(Rust)] type T = S;
183+
//~^ ERROR: attribute should be applied to a struct, enum, or union
184+
//~| NOTE not a struct, enum, or union
185+
186+
#[repr(Rust)] impl S { }
187+
//~^ ERROR: attribute should be applied to a struct, enum, or union
188+
//~| NOTE not a struct, enum, or union
189+
}
190+
167191
fn main() {}

tests/ui/feature-gates/issue-43106-gating-of-builtin-attrs-error.stderr

+40-1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,21 @@ LL | |
107107
LL | | }
108108
| |_- not a struct, enum, or union
109109

110+
error[E0517]: attribute should be applied to a struct, enum, or union
111+
--> $DIR/issue-43106-gating-of-builtin-attrs-error.rs:168:8
112+
|
113+
LL | #[repr(Rust)]
114+
| ^^^^
115+
LL |
116+
LL | / mod repr_rust {
117+
LL | |
118+
LL | | mod inner { #![repr(Rust)] }
119+
LL | |
120+
... |
121+
LL | |
122+
LL | | }
123+
| |_- not a struct, enum, or union
124+
110125
error: attribute should be applied to an `extern crate` item
111126
--> $DIR/issue-43106-gating-of-builtin-attrs-error.rs:26:1
112127
|
@@ -329,7 +344,31 @@ error[E0517]: attribute should be applied to a struct, enum, or union
329344
LL | #[repr(C)] impl S { }
330345
| ^ ---------- not a struct, enum, or union
331346

332-
error: aborting due to 39 previous errors
347+
error[E0517]: attribute should be applied to a struct, enum, or union
348+
--> $DIR/issue-43106-gating-of-builtin-attrs-error.rs:172:25
349+
|
350+
LL | mod inner { #![repr(Rust)] }
351+
| --------------------^^^^---- not a struct, enum, or union
352+
353+
error[E0517]: attribute should be applied to a struct, enum, or union
354+
--> $DIR/issue-43106-gating-of-builtin-attrs-error.rs:176:12
355+
|
356+
LL | #[repr(Rust)] fn f() { }
357+
| ^^^^ ---------- not a struct, enum, or union
358+
359+
error[E0517]: attribute should be applied to a struct, enum, or union
360+
--> $DIR/issue-43106-gating-of-builtin-attrs-error.rs:182:12
361+
|
362+
LL | #[repr(Rust)] type T = S;
363+
| ^^^^ ----------- not a struct, enum, or union
364+
365+
error[E0517]: attribute should be applied to a struct, enum, or union
366+
--> $DIR/issue-43106-gating-of-builtin-attrs-error.rs:186:12
367+
|
368+
LL | #[repr(Rust)] impl S { }
369+
| ^^^^ ---------- not a struct, enum, or union
370+
371+
error: aborting due to 44 previous errors
333372

334373
Some errors have detailed explanations: E0517, E0518, E0658.
335374
For more information about an error, try `rustc --explain E0517`.

0 commit comments

Comments
 (0)