Files
kotlin-fork/compiler/testData/codegen/box/casts/kt58707.kt
T
Pavel Kunyavskiy f2520a9cb7 [K/N] Rework is checks and as casts codegeneration
^KT-58707
^KT-59022
2023-06-05 08:56:17 +00:00

7 lines
127 B
Kotlin
Vendored

interface A {}
fun <E> getA() = (object : A {}) as A
fun box() : String {
return if (getA<Int>() is A) "OK" else "FAIL"
}