rlox/interpreter/tests/lox/this/this_in_top_level_function.lox

3 lines
79 B
Lox
Raw Normal View History

2024-09-01 19:15:55 +02:00
fun foo() {
this; // Error at 'this': Can't use 'this' outside of a class.
}