88d35067e3
^KT-51317 Fixed
11 lines
207 B
Kotlin
Vendored
11 lines
207 B
Kotlin
Vendored
val f: (String.() -> String)? = null
|
|
|
|
fun box(): String {
|
|
val g = when {
|
|
f != null -> <!DEBUG_INFO_SMARTCAST!>f<!>
|
|
else -> {
|
|
{ this + "K" }
|
|
}
|
|
}
|
|
return g("O")
|
|
} |