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