temptycaseobj.nim 218 B

12345678910111213
  1. discard """
  2. errormsg: "identifier expected, but got 'keyword of'"
  3. line: 11
  4. """
  5. type
  6. TMyEnum = enum enA, enU, enO
  7. TMyCase = object
  8. case e: TMyEnum
  9. of enA:
  10. of enU: x, y: int
  11. of enO: a, b: string