summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/analyzer/errors/native_freed_instance.gd
blob: dd2708b21d5970104d11dc9bcabd29846f78fda1 (plain)
1
2
3
4
5
6
7
func test():
	var x = Node.new()

	x.free()

	var ok = x
	var bad : Node = x