mlox/lox.t/constructor/default_arguments.lox
2024-08-03 02:44:12 +02:00

3 lines
95 B
Lox

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