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

12 lines
133 B
Plaintext

enum class MyEnum {
FIRST
SECOND
}
fun foo() {
val a = MyEnum.FIRST
when(a) {
<caret> -> {
}
}
}