0a9e0ddba9
So #KT-13985 Fixed
10 lines
183 B
Kotlin
Vendored
10 lines
183 B
Kotlin
Vendored
// "Add remaining branches" "true"
|
|
// WITH_RUNTIME
|
|
|
|
enum class FooEnum {
|
|
A, B, `C`, `true`, `false`, `null`
|
|
}
|
|
|
|
fun test(foo: FooEnum?) = <caret>when (foo) {
|
|
FooEnum.A -> "A"
|
|
} |