diff options
Diffstat (limited to 'tests/tillrec.nim')
-rwxr-xr-x | tests/tillrec.nim | 10 |
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] |