Files
kotlin-fork/compiler/testData/codegen/box/regressions/functionLiteralAsLastExpressionInBlock.kt
T
2018-06-28 12:26:41 +02:00

9 lines
161 B
Kotlin
Vendored

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