Files
kotlin/compiler/testData/loadJava/javaAgainstKotlin/visibility/ProtectedPackage.txt
2013-03-22 16:38:26 +04:00

12 lines
289 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
}