mlox/lox.t/constructor/default_arguments.lox

3 lines
95 B
Lox
Raw Normal View History

2024-08-03 02:44:12 +02:00
class Foo {}
var foo = Foo(1, 2, 3); // expect runtime error: Expected 0 arguments but got 3.