Files
kotlin-fork/compiler/testData/diagnostics/tests/enum/ifEnumEntry.kt
T

6 lines
135 B
Kotlin
Vendored

enum class MyEnum {
FIRST,
SECOND
}
fun foo(me: MyEnum): Boolean = if (me is <!IS_ENUM_ENTRY!>MyEnum.FIRST<!>) true else false