rlox/interpreter/tests/lox/constructor/default_arguments.lox

3 lines
95 B
Lox
Raw Normal View History

2024-09-01 19:15:55 +02:00
class Foo {}
var foo = Foo(1, 2, 3); // expect runtime error: Expected 0 arguments but got 3.