exercism / csharp-analyzer

An analyser for C#

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add features for flag-enums exercise

mikedamay opened this issue · comments

See the flag-enums exercise.

Two features are required for this exercise:

  • Verify that the Permission enum is marked with the [Flags] attribute.
  • Suggest using byte as the enum's backing type if no backing type was explicitly specified.

The boilerplate is here.
Example code is here.