blob: 92d5b9fc067804ecc4734f51b46c79f5aab68729 [file]
// WITH_STDLIB
import kotlin.test.*
fun foo() {
val cls1: Any? = Int
val cls2: Any? = null
cls1?.let {
cls2?.let {
var itClass = it::class
}
}
}
fun box(): String {
foo()
return "OK"
}