mlox/lox.t/inheritance/inherit_from_nil.lox

2 lines
87 B
Lox
Raw Permalink Normal View History

2024-08-03 02:44:12 +02:00
var Nil = nil;
class Foo < Nil {} // expect runtime error: Superclass must be a class.