blob: e79215c9e3dbd7c8145444841944b86f676578d1 [file]
// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND_K1: JVM_IR
interface I
class View1
fun <T : View1> findViewById1(): T? = null
fun test1(): I? = findViewById1()
fun box(): String {
test1()
return "OK"
}