xxxxxxxxxx
int main() {
foreach(int x; [0, 1, 2])
{
if (x == 1)
goto Q; // compiler complains here about x
int y;
}
Q:
return 0;