DEBSOURCES
Skip Quicknav
sources / godot / 4.4.1%2Bds-1 / modules / gdscript / tests / scripts / analyzer / warnings / confusable_local_declaration.gd
123456
func test(): if true: var a = 1 print(a) var a = 2 print(a)