Files
kotlin-fork/idea/testData/quickfix/when/removeRedundantBranch.kt.after
T
2021-05-11 21:42:45 +02:00

10 lines
153 B
Plaintext
Vendored

// "Remove branch" "true"
fun test(x: Int): String {
return when (x) {
1 -> "1"
2 -> "2"
else -> ""
}
}
/* IGNORE_FIR */