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