1
0
Fork 0
godot/modules/gdscript/tests/scripts/analyzer/features/virtual_super_implemented.gd

11 lines
114 B
GDScript

class TestOne:
func _init():
pass
class TestTwo extends TestOne:
func _init():
super()
func test():
pass