mlox/lox.t/class/local_inherit_self.lox

4 lines
131 B
Lox
Raw Permalink Normal View History

2024-08-03 02:44:12 +02:00
{
class Foo < Foo {} // Error at 'Foo': A class can't inherit from itself.
}
// [c line 5] Error at end: Expect '}' after block.