e2d5e9a184
#KT-31673 Fixed
10 lines
168 B
Kotlin
Vendored
10 lines
168 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
fun test() {
|
|
val x = when<caret> (val a = create()) {
|
|
else -> use(a, a)
|
|
}
|
|
}
|
|
|
|
fun create(): String = ""
|
|
|
|
fun use(s: String, t: String) {} |