Files
Nim/tests/objvariant/temptycaseobj.nim
2018-12-11 21:23:21 +01:00

13 lines
218 B
Nim

discard """
errormsg: "identifier expected, but got 'keyword of'"
line: 11
"""
type
TMyEnum = enum enA, enU, enO
TMyCase = object
case e: TMyEnum
of enA:
of enU: x, y: int
of enO: a, b: string