== Why is this an issue? include::../description.adoc[] === Noncompliant code example [source,csharp] ---- [Flags] enum FruitType { Void = 0, // Non-Compliant Banana = 1, Orange = 2, Strawberry = 4 } ---- === Compliant solution [source,csharp] ---- [Flags] enum FruitType { None = 0, // Compliant Banana = 1, Orange = 2, Strawberry = 4 } ---- ifdef::env-github,rspecator-view[] ''' == Implementation Specification (visible only on this page) include::../message.adoc[] endif::env-github,rspecator-view[]