rlox/interpreter/tests/lox/class/local_inherit_self.lox

4 lines
131 B
Lox
Raw Normal View History

2024-09-01 19:15:55 +02:00
{
class Foo < Foo {} // Error at 'Foo': A class can't inherit from itself.
}
// [c line 5] Error at end: Expect '}' after block.