Files
kotlin-fork/idea/testData/intentions/removeBraces/elseLambda2.kt
T
2020-04-02 12:52:11 +03:00

8 lines
157 B
Kotlin
Vendored

fun test(i: Int) {
val predicate: () -> Boolean =
if (i == 1) {
{ true }
} else {
<caret>{ -> false }
}
}