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

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")
}