mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-27 17:11:40 +00:00
9 lines
154 B
Nim
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
|