Files
kotlin-fork/idea/testData/intentions/moveLambdaInsideParentheses/moveLambda5.kt
T

9 lines
100 B
Kotlin

// IS_APPLICABLE: true
fun foo() {
bar() <caret>{ it }
}
fun bar(b: (Int) -> Int) {
b(1)
}