Files
kotlin-fork/idea/testData/refactoring/pullUp/k2k/dropModifierWhenMovingSideOverrideWithSuperEntryAndAbstract.kt
T

14 lines
192 B
Kotlin
Vendored

open class A {
}
// INFO: {"checked": "true"}
interface I {
fun foo()
}
class <caret>B : A(), I {
// INFO: {"checked": "true", "toAbstract": "true"}
override fun foo() {
}
}