Files
kotlin-fork/idea/testData/intentions/simplifyWhenWithBooleanConstantCondition/trueIsNotTop1.kt.after
T
2017-11-10 15:34:08 +03:00

6 lines
83 B
Plaintext
Vendored

fun test(i: Int) {
val x = when {
i == 1 -> 1
else -> 3
}
}