J-Rojas
03/22/2018, 5:07 PMfun foo() {
val cls1: Any? = Int
val cls2: Any? = null
cls1?.let {
cls2?.let {
var itClass = it::class
}
}
}
It has something to do with the resolution of the 'it' within two nested let statements.