Files
kotlin-fork/compiler/testData/codegen/box/regressions/functionLiteralAsLastExpressionInBlock.kt
T
2018-08-09 14:22:50 +03:00

8 lines
135 B
Kotlin
Vendored

fun box(): String {
val p: (String) -> Boolean = if (true) {
{ true }
} else {
{ true }
}
return "OK"
}