blob: 087afe92c2ea4504f9d30297dd39490a8b1a350a [file] [log] [blame]
package com.siyeh.igtest.confusing;
public class ContinueInspection
{
public static void main(String[] args)
{
Label:
while(true)
{
for(int i = 0;i<4;i++)
{
if(i == 2)
{
continue;
}
System.out.println("i = " + i);
}
}
}
}