mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
14 lines
184 B
Perl
14 lines
184 B
Perl
local struct Type {
|
|
field: int
|
|
}
|
|
|
|
local terra foo(obj: Type) end
|
|
foo:setinlined(false)
|
|
|
|
local terra bar()
|
|
var obj: Type
|
|
defer foo(obj)
|
|
return
|
|
end
|
|
|
|
bar() |