Files
kotlin-fork/idea/testData/intentions/replaceItWithExplicitFunctionLiteralParam/applicable_nestedFunctionWithIt.kt.after
T

2 lines
76 B
Plaintext
Vendored

fun foo(a: (Int) -> Int): Int = a(1)
val x = foo { it + foo { it1 -> it1 } }