Files
Nim/tests/iter/titerassignerr.nim
2019-05-13 20:50:21 +02:00

9 lines
154 B
Nim

discard """
errormsg: "inline iterators are not first-class / cannot be assigned to variables"
line: 8
"""
iterator foo: int =
yield 2
let x = foo