You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
9 lines
106 B
GDScript
9 lines
106 B
GDScript
func test():
|
|
print(InnerA.new())
|
|
|
|
class InnerA extends InnerB:
|
|
pass
|
|
|
|
class InnerB extends InnerA:
|
|
pass
|