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

24 lines
165 B
Raku

struct B {
d : int
}
struct A {
b : &B;
c : int;
d : int;
e : int;
}
terra foo() : A
return A {nil}
end
foo:disas()
print(foo())
terralib.dumpmodule()