e2d5e9a184
#KT-31673 Fixed
12 lines
192 B
Kotlin
Vendored
12 lines
192 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) {} |