DEBSOURCES
Skip Quicknav
sources / godot / 4.4.1%2Bds-1 / modules / gdscript / tests / scripts / analyzer / errors / cyclic_ref_func.gd
123456789
func test(): print(f1()) print(f2()) static func f1(p := f2()) -> int: return 1 static func f2(p := f1()) -> int: return 2