e11072b8c2
#KT-30499 Fixed
9 lines
137 B
Kotlin
Vendored
9 lines
137 B
Kotlin
Vendored
fun test() = true
|
|
|
|
fun foo(): Int {
|
|
val a<caret> = test()
|
|
return when (a) {
|
|
true -> 42
|
|
else -> null
|
|
} ?: 55
|
|
} |