Files
kotlin-fork/compiler/testData/codegen/box/regressions/functionLiteralAsLastExpressionInBlock.kt
T
2019-11-19 11:00:09 +03:00

9 lines
165 B
Kotlin
Vendored

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