summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/analyzer/errors/cyclic_ref_const.gd
blob: 42925349516cdbb64837f6a7e765d70781829ffd (plain)
1
2
3
4
5
func test():
	print(c1)

const c1 = c2
const c2 = c1