rlox/interpreter/tests/lox/method/refer_to_name.lox

7 lines
120 B
Lox
Raw Permalink Normal View History

2024-09-01 19:15:55 +02:00
class Foo {
method() {
print method; // expect runtime error: Undefined variable 'method'.
}
}
Foo().method();