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

13 lines
163 B
Kotlin
Vendored

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