summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/quickfix/addElseBranchToIf/inElvisBlock.kt.after
blob: 96b7c8937810c73e197b91cff99cb5957a35bdd7 (plain)
1
2
3
4
5
6
7
8
// "Add else branch" "true"
fun foo(x: String?) {
    x ?: if (x == null) {
        return
    } else {
        <caret>
    }
}