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

24 lines
331 B
Perl

C = terralib.includecstring [[
typedef struct {
int a;
} S;
typedef struct {
S a;
} A;
]]
C2 = terralib.includecstring [[
typedef struct {
int a;
} S;
typedef struct {
S a;
} B;
]]
terra second()
var a : C2.B
var b : C.A
a.a = b.a
end
second:disas()