why i am getting Undefinedlabel error in java?
- by rohit
hi,
why i am getting undefined label error in following code?? 
i am ignoring code as it is of no use...
 loopLabel: 
 for(i=0;;i++)
 {
   { some code;
   }
   { come code;
   }
 }
 if(condition)
 {
     if(condition)
     { some code     }
     else 
     { 
           some code;
           continue loopLabel;
     }
 }