summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/invertIfCondition/afterDoNotRemoveReturn.java
blob: ee944540c9d3c5058a91b5a6be406e6cc60ac90f (plain)
1
2
3
4
5
6
7
8
9
10
// "Invert If Condition" "true"
class Test {
    public static int create() {
        if (true) {
            return;
        }
        return "s";

    }
}