summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/analyzer/errors/cyclic_ref_external.gd
blob: 52e0d603899b645f1f845155fc60931453550a01 (plain)
1
2
3
4
5
6
func test():
	print(v)

var v = A.v

const A = preload("cyclic_ref_external_a.notest.gd")