Files
kotlin-fork/compiler/testData/codegen/box/checkcastOptimization/kt47851.kt
T
2021-11-20 23:29:19 +03:00

22 lines
397 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
// FIR status: result.getMethod OK in FE1.0, unresolved in FIR
class C(val value: String) {
fun getField() = value
fun getMethod() {}
}
fun foo(): Any {
var result: Any = ""
result = C("OK")
try {
result = result.getField()
} catch (e: Exception) {
result.getMethod()
}
return result
}
fun box() = foo().toString()