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

6 lines
115 B
Kotlin
Vendored

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