blob: 7584c83c274ee9e5febc2ec394791c6b7bcc6c03 [file]
// "Replace with safe (?.) call" "true"
// WITH_RUNTIME
fun main() {
var a = foo()?.length ?: 0
}
fun foo(): String? {
return ""
}