Files
kotlin-fork/compiler/testData/codegen/box/regressions/functionLiteralAsLastExpressionInBlock.kt
T
2017-08-23 15:53:52 +03:00

8 lines
135 B
Kotlin
Vendored

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