Files
kotlin-fork/j2k/testData/fileOrElement/function/overrideWithHigherVisibility.kt
T
2016-12-14 13:35:31 +03:00

10 lines
156 B
Kotlin
Vendored

internal open class Base {
protected open fun foo() {}
}
internal class Derived : Base() {
public override fun foo() {
super.foo()
}
}