Files
kotlin-fork/idea/testData/refactoring/pushDown/liftPrivate.kt.after
T
2015-08-17 20:28:10 +03:00

10 lines
177 B
Plaintext
Vendored

open class A {
// INFO: {"checked": "true", "toAbstract": "true"}
protected abstract fun foo()
inner class B : A() {
override fun foo() {
}
}
}