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

9 lines
142 B
Kotlin
Vendored

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