e6f4d6e6fa
^KT-65406
17 lines
189 B
Kotlin
Vendored
17 lines
189 B
Kotlin
Vendored
fun takeInt(x: Int) {
|
|
}
|
|
|
|
fun test(b: Boolean) {
|
|
val x: Int = when {
|
|
b -> { // BLOCK
|
|
3
|
|
}
|
|
else -> { // BLOCK
|
|
throw Exception()
|
|
0
|
|
}
|
|
}
|
|
takeInt(x = x)
|
|
}
|
|
|