mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
37 lines
970 B
Text
37 lines
970 B
Text
|
error: enum variant has empty brackets
|
||
|
--> $DIR/empty_enum_variants_with_brackets.rs:7:16
|
||
|
|
|
||
|
LL | EmptyBraces {},
|
||
|
| ^^^
|
||
|
|
|
||
|
= note: `-D clippy::empty-enum-variants-with-brackets` implied by `-D warnings`
|
||
|
= help: to override `-D warnings` add `#[allow(clippy::empty_enum_variants_with_brackets)]`
|
||
|
= help: remove the brackets
|
||
|
|
||
|
error: enum variant has empty brackets
|
||
|
--> $DIR/empty_enum_variants_with_brackets.rs:8:21
|
||
|
|
|
||
|
LL | EmptyParentheses(),
|
||
|
| ^^
|
||
|
|
|
||
|
= help: remove the brackets
|
||
|
|
||
|
error: enum variant has empty brackets
|
||
|
--> $DIR/empty_enum_variants_with_brackets.rs:14:16
|
||
|
|
|
||
|
LL | EmptyBraces {},
|
||
|
| ^^^
|
||
|
|
|
||
|
= help: remove the brackets
|
||
|
|
||
|
error: enum variant has empty brackets
|
||
|
--> $DIR/empty_enum_variants_with_brackets.rs:15:21
|
||
|
|
|
||
|
LL | EmptyParentheses(),
|
||
|
| ^^
|
||
|
|
|
||
|
= help: remove the brackets
|
||
|
|
||
|
error: aborting due to 4 previous errors
|
||
|
|