Files
kotlin-fork/idea/testData/quickfix/nullables/unsafeInfixCall/unsafeSet.kt
T
2021-06-03 20:17:58 +03:00

9 lines
168 B
Kotlin
Vendored

// "Replace with safe (?.) call" "true"
operator fun Int.set(row: Int, column: Int, value: Int) {}
fun foo(arg: Int?) {
arg<caret>[42, 13] = 0
}
/* IGNORE_FIR */