blob: 0dd8f3891761f1c72e5bc9a5dab621ac6852445b [file]
fun test_1(): String {
return when {
else -> { // BLOCK
return ""
}
}
}
fun test_2(b: Boolean): Boolean {
return when {
b -> { // BLOCK
true
}
else -> { // BLOCK
throw NotImplementedError()
}
}
}