summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/analyzer/errors/abstract_script_instantiate.gd
blob: be67182efb0797a9efb9ccb9bd369d5570e813df (plain)
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()