fix some bugs

This commit is contained in:
nora 2023-12-15 17:28:00 +01:00
parent 01d4238269
commit 537c924a68
7 changed files with 47 additions and 11 deletions

View file

@ -0,0 +1,5 @@
function main() = (
x();
);
function x(a: Int) = ;

View file

@ -0,0 +1,4 @@
error: missing argument of type Int
--> $DIR/missing_args.nil:2
2 | x();
^