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

15 lines
175 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
}
}
/* IGNORE_FIR */