mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
9 lines
166 B
Nim
9 lines
166 B
Nim
discard """
|
|
errormsg: "type mismatch: got <string> but expected 'int literal(1)'"
|
|
line: 8
|
|
"""
|
|
|
|
iterator b(): auto {.closure.} =
|
|
yield 1
|
|
if true: return "str"
|