blob: fae71abb56b741b634a9af0e55ab60d5676d7cbc [file]
// "Add else branch" "true"
fun test() {
val a = 12
val x = when (a) {
else -> {<caret>
}
}
}