mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
12 lines
143 B
Nim
12 lines
143 B
Nim
discard """
|
|
targets: "cpp"
|
|
"""
|
|
|
|
type K = object
|
|
h: iterator(f: K): K
|
|
|
|
iterator d(g: K): K {.closure.} =
|
|
defer:
|
|
discard
|
|
|
|
discard K(h: d) |