godot/modules/gdscript/tests/scripts/analyzer/errors/for_loop_on_hard_int.gd

func test():
	var hard_int := 1

	for x in hard_int:
		if x is String:
			pass