mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
11 lines
122 B
Perl
11 lines
122 B
Perl
|
|
struct A { a : &A, b : int }
|
|
|
|
terra foo(a : A)
|
|
return a.b
|
|
end
|
|
|
|
local test = require("test")
|
|
|
|
test.eq(foo({b = 5}),5)
|