mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
8 lines
143 B
Perl
8 lines
143 B
Perl
local test = require("test")
|
|
|
|
terra foo(a : int)
|
|
return 1 << 2, a >> 1, -4 >> 1, uint32(-a) >> 1
|
|
end
|
|
|
|
test.meq({4,2,-2,2147483646},foo(4))
|