rlox/interpreter/tests/lox/call/object.lox
2024-09-01 19:15:55 +02:00

4 lines
100 B
Lox

class Foo {}
var foo = Foo();
foo(); // expect runtime error: Can only call functions and classes.