Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/afterNull.java
2017-04-10 12:09:51 +07:00

11 lines
185 B
Java

// "Invert 'if' condition" "true"
class A {
public boolean foo() {
if (!null) {
return true;
}
else {
return false;
}
}
}