summary refs log blame commit diff stats
path: root/tests/compile/tobjconstr2.nim
blob: ef5446999874696587f5f861abf9fa8487a5e452 (plain) (tree)
1
2
3
4
5
6
7
8







                                 
type TFoo{.exportc.} = object
 x:int

var s{.exportc.}: seq[TFoo] = @[]

s.add TFoo(x: 42)

echo s[0].x