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