Files
kotlin/idea/testData/quickfix/replaceWithSafeCall/expression.kt.after
2017-06-28 15:28:35 +03:00

5 lines
110 B
Plaintext
Vendored

// "Replace with safe (?.) call" "true"
// WITH_RUNTIME
fun foo(s: String?) {
1 + (s?.length ?: <caret>)
}