d390f881c8
^KT-48708 Fixed
14 lines
170 B
Kotlin
Vendored
14 lines
170 B
Kotlin
Vendored
// ISSUE: KT-48708
|
|
|
|
fun test(b: Boolean) {
|
|
val x = if (b) {
|
|
3
|
|
} else {
|
|
throw Exception()
|
|
0
|
|
}
|
|
takeInt(x)
|
|
}
|
|
|
|
fun takeInt(x: Int) {}
|