Files
kotlin-fork/idea/testData/intentions/replaceExplicitFunctionLiteralParamWithIt/applicable_formatsProperly.kt.after
T

7 lines
99 B
Plaintext

fun foo(i: (Int) -> Unit) {}
fun test() {
foo {
<caret>foo { x -> x % 2 == 0 }
}
}