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