mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
15 lines
293 B
Nim
15 lines
293 B
Nim
discard """
|
|
file: "treciter.nim"
|
|
line: 9
|
|
errormsg: "recursive dependency: \'myrec\'"
|
|
"""
|
|
# 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
|
|
|
|
|