rlox/interpreter/tests/lox/inheritance/inherit_from_nil.lox
2024-09-01 19:15:55 +02:00

2 lines
87 B
Lox

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