Files
kotlin-fork/idea/testData/quickfix/expressions/afterUnsafeCall.kt
T

5 lines
71 B
Kotlin

// "Replace with safe call" "true"
fun foo(a: Int?) {
a?.plus(1)
}