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

7 lines
82 B
Plaintext
Vendored

fun test() {
C().foo { it + 1 }
}
class C {
fun foo(f: (Int) -> Int) {}
}