mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
16 lines
360 B
Nim
16 lines
360 B
Nim
discard """
|
|
errormsg: "interpretation requires too many iterations; if you are sure this is not a bug in your code edit compiler/vmdef.MaxLoopIterations and rebuild the compiler"
|
|
"""
|
|
|
|
# issue #9829
|
|
|
|
macro foo(): untyped =
|
|
let lines = ["123", "5423"]
|
|
var idx = 0
|
|
while idx < lines.len():
|
|
if lines[idx].len() < 1:
|
|
inc(idx)
|
|
continue
|
|
|
|
foo()
|