summary refs log tree commit diff stats
path: root/tests/treciter.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/treciter.nim')
-rw-r--r--tests/treciter.nim7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/treciter.nim b/tests/treciter.nim
deleted file mode 100644
index 662239285..000000000
--- a/tests/treciter.nim
+++ /dev/null
@@ -1,7 +0,0 @@
-# Test that an error message occurs for a recursive iterator
-
-iterator myrec(n: int): int =
-  for x in myrec(n-1): #ERROR_MSG recursive dependency: 'myrec'
-    yield x
-
-for x in myrec(10): echo x