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

5 lines
106 B
Lox

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