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

12 lines
175 B
Kotlin
Vendored

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