mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
44 lines
977 B
Text
44 lines
977 B
Text
error: this seems like a manual implementation of the non-exhaustive pattern
|
|
--> $DIR/manual_non_exhaustive_enum.rs:5:1
|
|
|
|
|
LL | enum E {
|
|
| ^-----
|
|
| |
|
|
| _help: add the attribute: `#[non_exhaustive] enum E`
|
|
| |
|
|
LL | |
|
|
LL | | A,
|
|
LL | | B,
|
|
LL | | #[doc(hidden)]
|
|
LL | | _C,
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
help: remove this variant
|
|
--> $DIR/manual_non_exhaustive_enum.rs:10:5
|
|
|
|
|
LL | _C,
|
|
| ^^
|
|
= note: `-D clippy::manual-non-exhaustive` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::manual_non_exhaustive)]`
|
|
|
|
error: this seems like a manual implementation of the non-exhaustive pattern
|
|
--> $DIR/manual_non_exhaustive_enum.rs:15:1
|
|
|
|
|
LL | / enum Ep {
|
|
LL | |
|
|
LL | | A,
|
|
LL | | B,
|
|
LL | | #[doc(hidden)]
|
|
LL | | _C,
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
help: remove this variant
|
|
--> $DIR/manual_non_exhaustive_enum.rs:20:5
|
|
|
|
|
LL | _C,
|
|
| ^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|