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

9 lines
111 B
Kotlin
Vendored

enum class MyEnum {
FIRST
SECOND
}
fun foo() {
val a = MyEnum.FIRST
<selection>a</selection>
}