Duplicate label 'identifier' nested inside another label with same name
The compiler detected a nested label that was the same as another label. Rename the label to something different. Change all break and continue statements that reference the label and compile again.
The following example illustrates this error:
public class Simple{
void method1(){
outsideLoop:
for (int i=0;i<10;i++)
{
outsideLoop: //error: duplicate label
for (int x=0;x<10;x++)
{
break outsideLoop;
}
break outsideLoop;
}
}
}