Files
Nim/tests/vm/tclosureiterator.nim
2020-11-05 09:16:10 +01:00

10 lines
144 B
Nim

discard """
errormsg: "Closure iterators are not supported by VM!"
"""
iterator iter*(): int {.closure.} =
yield 3
static:
var x = iter