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