DEBSOURCES
Skip Quicknav
sources / nim / 2.2.0-1 / tests / cpp / t23306.nim
123456789101112
discard """ targets: "cpp" """ type K = object h: iterator(f: K): K iterator d(g: K): K {.closure.} = defer: discard discard K(h: d)