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

2 lines
81 B
Plaintext
Vendored

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