d390f881c8
^KT-48708 Fixed
16 lines
188 B
Plaintext
Vendored
16 lines
188 B
Plaintext
Vendored
fun test(b: Boolean) {
|
|
val x: Int = when {
|
|
b -> { // BLOCK
|
|
3
|
|
}
|
|
else -> { // BLOCK
|
|
throw Exception()
|
|
0
|
|
}
|
|
}
|
|
takeInt(x = x)
|
|
}
|
|
|
|
fun takeInt(x: Int) {
|
|
}
|