6 lines
122 B
Plaintext
Vendored
6 lines
122 B
Plaintext
Vendored
// "Add remaining branches" "true"
|
|
fun test(b: Boolean) = when(b) {
|
|
false -> 0
|
|
true -> throw AssertionError("")
|
|
}
|