Files
kotlin-fork/idea/testData/intentions/moveLambdaOutsideParentheses/lambdaWithCommas3.kt.after
T
2015-05-27 16:15:44 +03:00

9 lines
166 B
Plaintext

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