cbdc79fcda
#KT-30426 Fixed
13 lines
157 B
Kotlin
Vendored
13 lines
157 B
Kotlin
Vendored
// "Add remaining branches" "true"
|
|
// WITH_RUNTIME
|
|
|
|
sealed class A
|
|
class B : A()
|
|
|
|
fun test(a: A) {
|
|
val r = <caret>when (a) {
|
|
|
|
// comment
|
|
|
|
}
|
|
} |