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

13 lines
170 B
Plaintext
Vendored

// "Add remaining branches" "true"
// WITH_RUNTIME
sealed class A
class B : A()
fun test(a: A) {
val r = when (a) {
is B -> TODO()
}
}
/* IGNORE_FIR */