Files
kotlin-fork/idea/testData/quickfix/replaceWithSafeCall/hasElvis.kt.after
T
2019-10-21 23:28:19 +07:00

10 lines
140 B
Plaintext
Vendored

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