mlox/lox.t/this/this_in_top_level_function.lox

3 lines
79 B
Lox
Raw Normal View History

2024-08-03 02:44:12 +02:00
fun foo() {
this; // Error at 'this': Can't use 'this' outside of a class.
}