ca7649edbb
UNSAFE_INFIX_CALL, UNSAFE_OPERATOR_CALL.
4 lines
129 B
Plaintext
Vendored
4 lines
129 B
Plaintext
Vendored
// "Replace with safe (?.) call" "true"
|
|
|
|
operator fun Int.get(row: Int, column: Int) = this
|
|
fun foo(arg: Int?) = arg?.get(42, 13) |