Files
kotlin/idea/testData/codeInsight/surroundWith/withIfElseExpression/replaceWithParenthesized.kt.after
2018-02-16 13:29:53 +03:00

6 lines
93 B
Plaintext
Vendored

fun test(some: Boolean) {
(if (some) {
<caret>
} else {
}).equals(true)
}