rlox/interpreter/tests/lox/constructor/missing_arguments.lox

5 lines
106 B
Lox
Raw Normal View History

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