mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
10 lines
144 B
Nim
10 lines
144 B
Nim
discard """
|
|
errormsg: "Closure iterators are not supported by VM!"
|
|
"""
|
|
|
|
iterator iter*(): int {.closure.} =
|
|
yield 3
|
|
|
|
static:
|
|
var x = iter
|