summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/runtime/features/object_constructor.gd
blob: b875efef56f090ba19946f458cd14d8a474dcc36 (plain)
1
2
3
4
5
6
# GH-73213

func test():
	var object := Object.new() # Not `Object()`.
	print(object.get_class())
	object.free()