``` fun foo(): String { val x = null as...
# getting-started
f
Copy code
fun foo(): String {
        val x = null as    //  this is compile error
        return x
    }