Files
kotlin/idea/testData/codeInsight/surroundWith/withIfElseExpression/complexBoolean.kt.after
2016-09-20 15:26:41 +03:00

7 lines
94 B
Plaintext
Vendored

fun foo(x: Boolean, y: Boolean) {
if (x || y && x) {
<caret>
} else {
}
}