Files
kotlin-fork/idea/testData/quickfix/when/addRemainingBranchesBlankLineWithComment.kt.after
T
2021-05-11 21:42:45 +02:00

15 lines
190 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()
}
}
/* IGNORE_FIR */