// WITH_RUNTIME val nullableString: String? = "abc" val foo = if (nullableString != null) { nullableString.toUpperCase() } else { "" }