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