e2d5e9a184
#KT-31673 Fixed
14 lines
187 B
Kotlin
Vendored
14 lines
187 B
Kotlin
Vendored
fun test() {
|
|
when<caret> (val a = create()) {
|
|
else -> {
|
|
use("")
|
|
foo()
|
|
}
|
|
}
|
|
}
|
|
|
|
fun create(): String = ""
|
|
|
|
fun use(s: String) {}
|
|
|
|
fun foo() {} |