tlang/source/tlang/testing/typecheck/simple_1.t

14 lines
117 B
Raku

module simple;
int j = 1+func(2,test());
j = 2+func(2,test());
int func(int x1, byte x2)
{
}
byte test()
{
}