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>
13 lines
327 B
Plaintext
13 lines
327 B
Plaintext
error[E0518]: attribute should be applied to function or closure
|
|
--> $DIR/inline-disallow-on-variant.rs:2:5
|
|
|
|
|
LL | #[inline]
|
|
| ^^^^^^^^^
|
|
LL |
|
|
LL | Variant,
|
|
| ------- not a function or closure
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0518`.
|