ca7649edbb
UNSAFE_INFIX_CALL, UNSAFE_OPERATOR_CALL.
4 lines
118 B
Kotlin
Vendored
4 lines
118 B
Kotlin
Vendored
// "Replace with safe (?.) call" "true"
|
|
|
|
operator fun Int.plus(index: Int) = this
|
|
fun fox(arg: Int?) = arg <caret>+ 42 |