summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/runtime/features/getter_with_freed_object.gd
blob: a2d09bf7d3d1196f7d1cabe3c7b3fe803b2b0691 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# https://github.com/godotengine/godot/issues/68184

var node: Node:
	get:
		return node
	set(n):
		node = n


func test():
	node = Node.new()
	node.free()

	if !is_instance_valid(node):
		print("It is freed")