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

8 lines
196 B
Plaintext
Vendored

class Mocha() {
operator fun invoke(x: Int, y: String, f: (Int) -> String) {
}
}
fun main() {
val mocha = Mocha()
val testing = mocha.invoke(1, "fire"){ x: Int -> "hello world" }
}