76b0b785c5
#KT-14179 Fixed
6 lines
139 B
Kotlin
Vendored
6 lines
139 B
Kotlin
Vendored
enum class MyEnum {
|
|
FIRST,
|
|
SECOND
|
|
}
|
|
|
|
fun foo(me: MyEnum): Boolean = me is <!IS_ENUM_ENTRY!>MyEnum.<!ENUM_ENTRY_AS_TYPE!>FIRST<!><!> |