blob: d90d76d152a28f32fbe4945026cf82107d75719d [file] [log] [blame]
fun test(b: Boolean) {
val x: Int = when {
b -> 3
else -> { // BLOCK
throw Exception()
0
}
}
takeInt(x = x)
}
fun takeInt(x: Int) {
}