June 09, 2006
import std.stdio;

void main()
{
	scope(exit) goto head;	// line 5
	head: writef("top\n");
}


//scope_goto.d(5): cannot goto in or out of finally block
June 13, 2006
Got it, thanks.