57e8fc5685
This commit modifies `check_attr` so that: - Enum variants are now checked (some attributes would not have been prohibited on variants previously). - `check_expr_attributes` and `check_stmt_attributes` are removed as `check_attributes` can perform the same checks. Signed-off-by: David Wood <david@davidtw.co>
4 lines
195 B
Rust
4 lines
195 B
Rust
fn main() {
|
|
#[inline] struct Foo; //~ ERROR attribute should be applied to function or closure
|
|
#[repr(C)] fn foo() {} //~ ERROR attribute should be applied to a struct, enum, or union
|
|
}
|