rlox/interpreter/tests/lox/function/missing_arguments.lox
2024-09-01 19:15:55 +02:00

3 lines
79 B
Lox

fun f(a, b) {}
f(1); // expect runtime error: Expected 2 arguments but got 1.