Compiler Error C2705

'identifier' : illegal jump into __try scope

Program control was transferred to the specified label within a __try block.

The following is an example of this error:

void main ()
{
goto trouble;
   __try {
   trouble: ;   //error
   }
   __finally {}
}