Files
Nim/tests/compile/tobjconstr2.nim
2013-03-17 20:11:16 +01:00

9 lines
104 B
Nim

type TFoo{.exportc.} = object
x:int
var s{.exportc.}: seq[TFoo] = @[]
s.add TFoo(x: 42)
echo s[0].x