Posting here too seeing the +1 :wink: ``` class It...
# announcements
t
Posting here too seeing the +1 😉
Copy code
class Item(var name: String? = null)

val item = Item()

fun test() {
    if (!item.name.isNullOrEmpty()) {
        var t: String = item.name
    }
}
Is the reason why It's not Kotlinish for nullability handling. Compiler can't smart cast to String.