Files
kotlin-fork/idea/testData/intentions/replaceWithInfixFunctionCall/functionLiteralArgument.kt.after
T

8 lines
85 B
Plaintext

fun foo(x: Foo) {
x foo { it * 2 }
}
trait Foo {
fun foo(f: (Int) -> Int)
}