47493c1a65
(cherry picked from commit 3d67f84)
6 lines
146 B
Plaintext
Vendored
6 lines
146 B
Plaintext
Vendored
// "Replace with safe (?.) call" "true"
|
|
|
|
operator fun Int.set(row: Int, column: Int, value: Int) {}
|
|
fun foo(arg: Int?) {
|
|
arg?.set(42, 13, 0)
|
|
} |