Files
kotlin-fork/compiler/testData/loadJavaCustom/packageLocalVisibility/inheritance/kotlin/Derived.kt
T

5 lines
67 B
Kotlin

package test
class Derived(): Base() {
override fun foo() {}
}