digitalmars.D.bugs - undocumented restriction in scope statement
- BCS (7/7) Jun 09 2006 import std.stdio;
- Walter Bright (1/1) Jun 13 2006 Got it, thanks.
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
Jun 09 2006








Walter Bright <newshound digitalmars.com>