godot/modules/gdscript/tests/scripts/analyzer/warnings/confusable_local_usage.gd

var a = 1

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