Files
linguist/samples/Terra/bug3.t
2016-01-28 11:22:27 +07:00

16 lines
181 B
Raku

local S = terralib.types.newstruct("mystruct")
struct A {
v : int
}
S.entries:insert( { type = A, field = "what" } )
terra foo()
var v : S
return v.what.v
end
foo:compile()