Files
kotlin-fork/compiler/testData/codegen/bytecodeText/enum/enumCheckcasts.kt
T
2021-03-16 21:30:18 +01:00

8 lines
182 B
Kotlin
Vendored

enum class Foo {
A, B, C { override fun result() = "OK" };
open fun result() = "Fail"
}
// There are two CHECKCASTs, one in Foo.valueOf and one in Foo.values
// 2 CHECKCAST