t19445.nim 259 B

12345678910111213
  1. discard """
  2. matrix: "--nimcache:tests/ccgbugs/nimcache19445 --cincludes:nimcache19445 --header:m19445"
  3. targets: "c"
  4. """
  5. # bug #19445
  6. type
  7. Foo* {.exportc.} = object
  8. a*, b*, c*, d*: int
  9. proc dummy(): Foo {.exportc.} = discard
  10. {.compile:"m19445.c".}