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