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

3 lines
95 B
Lox

class Foo {}
var foo = Foo(1, 2, 3); // expect runtime error: Expected 0 arguments but got 3.