Files
kotlin/idea/testData/codeInsight/surroundWith/when/enum.kt.after
2014-05-16 17:10:02 +04:00

12 lines
134 B
Plaintext
Vendored

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