Files
kotlin-fork/idea/testData/quickfix/expressions/beforeUnsafeCall1.kt
T
2012-06-18 18:47:32 +04:00

5 lines
82 B
Kotlin

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