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