Files
kotlin/compiler/testData/loadJava/javaAgainstKotlin/visibility/ProtectedPackage.txt
2013-04-29 15:44:07 +04:00

12 lines
287 B
Plaintext

package test
public open class Base : java.lang.Object {
public constructor Base()
protected/*protected and package*/ open fun foo(): jet.Unit
}
internal final class Derived : test.Base {
public constructor Derived()
protected open override /*1*/ fun foo(): jet.Unit
}