summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/analyzer/errors/cyclic_ref_func.gd
blob: b610464c4413211b432983617e9057970865c6d5 (plain)
1
2
3
4
5
6
7
8
9
func test():
	print(f1())
	print(f2())

static func f1(p := f2()) -> int:
	return 1

static func f2(p := f1()) -> int:
	return 2