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

4 lines
131 B
Lox

{
class Foo < Foo {} // Error at 'Foo': A class can't inherit from itself.
}
// [c line 5] Error at end: Expect '}' after block.