7b2a66c006
Related to KT-20492
6 lines
141 B
Kotlin
Vendored
6 lines
141 B
Kotlin
Vendored
// ERROR: 'when' expression must be exhaustive, add necessary 'else' branch
|
|
fun test() {
|
|
val x = <caret>when {
|
|
false -> 1
|
|
}
|
|
} |