uhe
fun foo(x: String?) { if (x.isNullOrEmpty()) { println("x is null") } else { println("length of x = ${x.length}") // allegedly unsafe } }