mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 02:42:05 +00:00
14 lines
168 B
Nim
14 lines
168 B
Nim
discard """
|
|
action: reject
|
|
errormsg: "type expected"
|
|
file: "iterators.nim"
|
|
"""
|
|
|
|
|
|
template b(j: untyped) = j
|
|
template m() = discard
|
|
|
|
b:
|
|
for t, f in @[]:
|
|
m()
|