mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
* follow #15818 and close #7109 * Update compiler/jsgen.nim Co-authored-by: Juan Carlos <juancarlospaco@gmail.com> Co-authored-by: Juan Carlos <juancarlospaco@gmail.com>
9 lines
142 B
Nim
9 lines
142 B
Nim
discard """
|
|
errormsg: "Closure iterators are not supported by JS backend!"
|
|
"""
|
|
|
|
iterator iter*(): int {.closure.} =
|
|
yield 3
|
|
|
|
var x = iter
|