xxxxxxxxxx
import std.stdio;
void main()
{
foreach(int i ; [ 0, 1, 3 ])
if( i == 1)
goto Y;
int x;
writeln(x);
}
Y:
writeln("works");