virtualx-engine/modules/gdscript/tests/scripts/analyzer/errors/cyclic_inheritance.gd

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
106 B
GDScript3
Raw Normal View History

func test():
print(InnerA.new())
class InnerA extends InnerB:
pass
class InnerB extends InnerA:
pass