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

9 lines
134 B
Plaintext
Vendored

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