I just noticed something weird, can someone tell w...
# announcements
d
I just noticed something weird, can someone tell why last line in below code is compiling
Copy code
class User(val name: String, var age: Int?)

fun test() {

    val user = User("Name", 34)
    user.age?.toString()
    user.age.toString()
}