virtualx-engine/modules/gdscript/tests/scripts/analyzer/warnings/confusable_local_declaration.gd

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
67 B
GDScript3
Raw Normal View History

func test():
if true:
var a = 1
print(a)
var a = 2
print(a)