1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00
Files
godot/modules/gdscript/tests/scripts/analyzer/errors/cyclic_inheritance.gd
2022-12-14 21:44:05 -05:00

9 lines
106 B
GDScript

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