mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-27 17:11:40 +00:00
13 lines
259 B
Nim
13 lines
259 B
Nim
discard """
|
|
matrix: "--nimcache:tests/ccgbugs/nimcache19445 --cincludes:nimcache19445 --header:m19445"
|
|
targets: "c"
|
|
"""
|
|
|
|
# bug #19445
|
|
type
|
|
Foo* {.exportc.} = object
|
|
a*, b*, c*, d*: int
|
|
|
|
proc dummy(): Foo {.exportc.} = discard
|
|
|
|
{.compile:"m19445.c".} |