mlox/lox.t/method/missing_arguments.lox

5 lines
107 B
Lox
Raw Permalink Normal View History

2024-08-03 02:44:12 +02:00
class Foo {
method(a, b) {}
}
Foo().method(1); // expect runtime error: Expected 2 arguments but got 1.