Files
kotlin-fork/compiler/testData/codegen/box/regressions/nullableAfterExclExcl.kt
T
2017-08-24 13:50:11 +03:00

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