Files
kotlin-fork/idea/testData/intentions/moveLambdaOutsideParentheses/lambdaWithCommas.kt
T

9 lines
142 B
Kotlin

// IS_APPLICABLE: true
fun bar(f: () -> Unit) {}
fun foo(a: Int, b: Int) = 2
fun test() {
bar({
<caret>val a = foo(1, 2)
})
}