Files
kotlin-fork/idea/testData/formatter/MultilineFunctionLiteral.after.kt
T
2013-09-24 06:58:40 -07:00

10 lines
111 B
Kotlin
Vendored

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