fun foo(): Int { val s: String? = "" return if (true) { s!!.length } else { s!!.length } }