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

9 lines
198 B
Java

// "Invert If Condition" "true"
class A {
public boolean foo(boolean a, boolean b, boolean c, boolean d) {
if (!(a |<caret>| b) || c || d)
return false;
return true;
}
}