e955dcfc14
#KT-30975 Fixed
9 lines
144 B
Kotlin
Vendored
9 lines
144 B
Kotlin
Vendored
fun test() {
|
|
when (val a = create()) {
|
|
else -> use(a, a)
|
|
}<caret>
|
|
}
|
|
|
|
fun create(): String = ""
|
|
|
|
fun use(s: String, t: String) {} |