summary refs log tree commit diff stats
path: root/tests/tillrec.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tillrec.nim')
-rwxr-xr-xtests/tillrec.nim10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/tillrec.nim b/tests/tillrec.nim
deleted file mode 100755
index 21ce19889..000000000
--- a/tests/tillrec.nim
+++ /dev/null
@@ -1,10 +0,0 @@
-# test illegal recursive types

-

-type

-  TLegal {.final.} = object

-    x: int

-    kids: seq[TLegal]

-

-  TIllegal {.final.} = object  #ERROR_MSG illegal recursion in type 'TIllegal'

-    y: Int

-    x: array[0..3, TIllegal]