Files
kotlin-fork/idea/testData/formatter/MultilineFunctionLiteralWithParams.kt
T
2012-08-21 12:54:53 +04:00

4 lines
86 B
Kotlin

fun test(some: (Int) -> Int) {
}
fun foo() = test() {a -> if (true) { a } else { 1 }}