Files
kotlin-fork/idea/testData/refactoring/introduceLambdaParameter/multiline/multilineNestedBinaryExpression2.kt.after
T
2020-02-04 21:34:53 +07:00

8 lines
94 B
Plaintext
Vendored

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