Files
kotlin-fork/idea/testData/refactoring/introduceLambdaParameter/multiline/multilineNestedBinaryExpression1.kt.after
T
2020-01-17 21:02:54 +07:00

10 lines
128 B
Plaintext
Vendored

fun foo(i: Int) { }
fun test(
i: () -> Int = {
(1
+ 2 - 3)
}
) {
foo(i())
}