14 lines
206 B
Kotlin
Vendored
14 lines
206 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
interface Sample {
|
|
val callMe: Int
|
|
}
|
|
|
|
class Caller<out M : Sample?>(val member: M) {
|
|
fun test() {
|
|
member!!.callMe
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return "OK"
|
|
} |