Codebase Browser
godot
Go to App
godot
/
modules/gdscript/tests/scripts/analyzer/warnings/
confusable_local_usage_loop.gd
var a = 1 func test(): for _i in 3: print(a) var a = 2 print(a)