DEBSOURCES
Skip Quicknav
sources / godot / 4.4.1%2Bds-1 / modules / gdscript / tests / scripts / analyzer / errors / cyclic_ref_enum.gd
12345
func test(): print(E1.V) enum E1 {V = E2.V} enum E2 {V = E1.V}