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

9 lines
111 B
Kotlin
Vendored

// IS_APPLICABLE: true
fun foo() {
bar(2) <caret>{it * 3}
}
fun bar(a: Int, b: (Int) -> Int) {
b(a)
}