Files
kotlin-fork/compiler/testData/codegen/box/regressions/nullableAfterExclExcl.kt
T
2019-11-19 11:00:09 +03:00

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"
}