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

9 lines
145 B
Plaintext
Vendored

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