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

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

7 lines
55 B
GDScript3
Raw Normal View History

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