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

8 lines
95 B
Plaintext
Vendored

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