summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/warnings/unassigned_variable_op_assign.gd
blob: d77791f4c5890f621bd6b87f5cf0d5b6e91f7c30 (plain)
1
2
3
4
func test():
	var __: int
	# Variable has no set value at this point (even though it's implicitly `0` here).
	__ += 15