rlox/interpreter/tests/lox/function/missing_comma_in_parameters.lox

3 lines
135 B
Lox
Raw Permalink Normal View History

2024-09-01 19:15:55 +02:00
// [line 3] Error at 'c': Expect ')' after parameters.
// [c line 4] Error at end: Expect '}' after block.
fun foo(a, b c, d, e, f) {}