rlox/interpreter/tests/lox/class/local_inherit_other.lox

8 lines
78 B
Lox
Raw Normal View History

2024-09-01 19:15:55 +02:00
class A {}
fun f() {
class B < A {}
return B;
}
print f(); // expect: B