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

3 lines
79 B
Lox

fun foo() {
this; // Error at 'this': Can't use 'this' outside of a class.
}