summary refs log tree commit diff stats
path: root/tests/reject/temptycaseobj.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/reject/temptycaseobj.nim')
-rwxr-xr-xtests/reject/temptycaseobj.nim14
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
-
-