rlox/interpreter/tests/lox/inheritance/inherit_from_nil.lox

2 lines
87 B
Lox
Raw Normal View History

2024-09-01 19:15:55 +02:00
var Nil = nil;
class Foo < Nil {} // expect runtime error: Superclass must be a class.