rlox/interpreter/tests/lox/inheritance/inherit_from_function.lox

3 lines
91 B
Lox
Raw Permalink Normal View History

2024-09-01 19:15:55 +02:00
fun foo() {}
class Subclass < foo {} // expect runtime error: Superclass must be a class.