You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tlang/source/tlang/testing/typecheck/simple_function_call.t

19 lines
178 B
Raku

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