<?php declare(strict_types = 1); function f(): int { if (true) goto a; if (random_int(0,1)) return 2; return 1; if (true) { a: return 2; } } var_dump(f());
You have javascript disabled. You will not be able to edit any code.