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

5 lines
77 B
Kotlin

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