Files
kotlin-fork/idea/testData/intentions/operatorToFunction/functionCallMultipleArgument.kt.after
T

9 lines
160 B
Plaintext
Vendored

class bar() {
operator fun invoke(i: Any?, j: Any?) : Boolean {
return true
}
}
fun foo(i: Any?, j: Any?) {
val test = bar().invoke(i, j)
}