diff options
Diffstat (limited to 'tests/reject/temptycaseobj.nim')
-rwxr-xr-x | tests/reject/temptycaseobj.nim | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/reject/temptycaseobj.nim b/tests/reject/temptycaseobj.nim deleted file mode 100755 index 5977cb92b..000000000 --- a/tests/reject/temptycaseobj.nim +++ /dev/null @@ -1,14 +0,0 @@ -discard """ - line: 11 - errormsg: "identifier expected, but found '[same indentation]'" -""" - -type - TMyEnum = enum enA, enU, enO - TMyCase = object - case e: TMyEnum - of enA: - of enU: x, y: int - of enO: a, b: string - - |