summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/invertIfCondition/beforeDoNotRemoveReturn.java
blob: b847d4825c3b45b00993298f370475161e42e1ba (plain)
1
2
3
4
5
6
7
8
9
// "Invert If Condition" "true"
class Test {
    public static int create() {
        if (!tr<caret>ue) {
            return "s";
        }

    }
}