1 2 3 4 5 6 7 8 9
class A extends InstancePlaceholder: func _init(): print('no') class B extends A: pass func test(): B.new()