mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-28 17:41:45 +00:00
13 lines
125 B
Nim
13 lines
125 B
Nim
discard """
|
|
targets: "c cpp"
|
|
"""
|
|
|
|
# bug #19585
|
|
|
|
type
|
|
X* {.exportc.} = object
|
|
v: int
|
|
|
|
{.emit:"""
|
|
X x = { 1234 };
|
|
""".} |