mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 08:54:53 +00:00
13 lines
218 B
Nim
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
|