function foo(): void {
	/* HAKANA_FIXME[UnusedAssignmentStatement] */
	$a = 0;
	if (rand(0, 1)) {
		$a = 1;
	} else {
		$a = 2;
	}
	echo $a;
}