1c4fb9b00b
Relates to #KT-30975
10 lines
146 B
Kotlin
Vendored
10 lines
146 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
fun test() {
|
|
when<caret> (val a = create()) {
|
|
else -> use(a)
|
|
}
|
|
}
|
|
|
|
fun create(): String = ""
|
|
|
|
fun use(s: String) {} |