74c177fd26
#KT-19643 Fixed
5 lines
126 B
Plaintext
Vendored
5 lines
126 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun test(a: String?, b: String): String {
|
|
val x = (if (true) a else b) ?: throw Exception()
|
|
return x
|
|
} |