e955dcfc14
#KT-30975 Fixed
12 lines
178 B
Kotlin
Vendored
12 lines
178 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
fun test() {
|
|
val x = when (val a = create()) {
|
|
else -> {
|
|
use(a)
|
|
}
|
|
}<caret>
|
|
}
|
|
|
|
fun create(): String = ""
|
|
|
|
fun use(s: String) {} |