Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/beforeBrokenCodeContinueWithoutLoop.java

10 lines
161 B
Java

// "Invert 'if' condition" "false"
class C {
boolean foo() {
{
if (tr<caret>ue) continue;
if (false) return false;
}
return true;
}
}