summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/analyzer/errors/script_freed_instance.gd
blob: 758fbaccc9527a8b025ce96a24956c12cd56423a (plain)
1
2
3
4
5
6
7
8
9
10
class A extends Node:
	pass

func test():
	var x = A.new()

	x.free()

	var ok = x
	var bad : A = x