mlox/lox.t/inheritance/inherit_from_nil.lox
2024-08-03 02:44:12 +02:00

2 lines
87 B
Lox

var Nil = nil;
class Foo < Nil {} // expect runtime error: Superclass must be a class.