rlox/interpreter/tests/lox/super/super_in_top_level_function.lox

3 lines
87 B
Lox
Raw Normal View History

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