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