Files
kotlin/idea/testData/quickfix/replaceInfixOrOperatorCall/assignmentArray.kt
2017-06-28 15:28:35 +03:00

7 lines
130 B
Kotlin
Vendored

// "Replace with safe (?.) call" "true"
// WITH_RUNTIME
fun foo(array: Array<String>?) {
var s = ""
s = array[0]<caret>
}