godot/modules/gdscript/tests/scripts/parser/warnings/unassigned_variable_op_assign.gd

func test():
	var __: int
	# Variable has no set value at this point (even though it's implicitly `0` here).
	__ += 15