mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
24 lines
331 B
Perl
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() |