mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 04:02:41 +00:00
17 lines
233 B
Nim
17 lines
233 B
Nim
discard """
|
|
"""
|
|
|
|
# bug #5404
|
|
|
|
import parseopt
|
|
|
|
{.emit: """typedef struct {
|
|
int key;
|
|
} foo;""".}
|
|
|
|
type foo* {.importc: "foo", nodecl.} = object
|
|
key* {.importc: "key".}: cint
|
|
|
|
for kind, key, value in parseopt.getopt():
|
|
discard
|