Files
kotlin-fork/idea/testData/refactoring/pushDown/dropVisibilityOnGeneratedOverride.kt
T
2016-08-17 11:49:59 +03:00

10 lines
129 B
Kotlin
Vendored

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