Files
kotlin-fork/compiler/testData/diagnostics/tests/functionLiterals/kt51317.fir.kt
T
2022-05-23 12:36:12 +02:00

11 lines
180 B
Kotlin
Vendored

val f: (String.() -> String)? = null
fun box(): String {
val g = when {
f != null -> f
else -> {
{ this + "K" }
}
}
return g("O")
}