mlox/lox.t/method/refer_to_name.lox

7 lines
120 B
Lox
Raw Normal View History

2024-08-03 02:44:12 +02:00
class Foo {
method() {
print method; // expect runtime error: Undefined variable 'method'.
}
}
Foo().method();