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

	x.free()

	var ok = x
	var bad: Node = x