mlox/lox.t/this/this_in_top_level_function.lox
2024-08-03 02:44:12 +02:00

3 lines
79 B
Lox

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