mlox/lox.t/class/local_inherit_other.lox

8 lines
78 B
Lox
Raw Permalink Normal View History

2024-08-03 02:44:12 +02:00
class A {}
fun f() {
class B < A {}
return B;
}
print f(); // expect: B