mlox/lox.t/inheritance/inherit_from_function.lox

3 lines
91 B
Lox
Raw Permalink Normal View History

2024-08-03 02:44:12 +02:00
fun foo() {}
class Subclass < foo {} // expect runtime error: Superclass must be a class.