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

25 lines
277 B
Perl

struct A {
a : int
}
struct B {
a : A
}
function A.metamethods.__staticinitialize()
print("STATIC INIT A")
local terra what(b : B)
end
what:gettype(true)
end
function B.metamethods.__staticinitialize()
print("STATIC INIT B")
end
terra foo(b : B)
end
foo:compile()