Files
kotlin-fork/idea/testData/codeInsight/surroundWith/when/multiExpression.kt.after
T
Natalia.Ukhorskaya 654fa09fff Add when surrounder
2013-02-18 17:00:39 +04:00

9 lines
122 B
Plaintext

fun foo() {
val a = "aa"
when(a.capitalize()) {
<caret> -> {
}
else -> {
}
}
}