74c177fd26
#KT-19643 Fixed
6 lines
147 B
Kotlin
Vendored
6 lines
147 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
fun test(a: String?, b: String): String {
|
|
val x = if (true) a else b
|
|
<caret>if (x == null) throw Exception()
|
|
return x
|
|
} |