Files
kotlin-fork/compiler/testData/loadJava/javaAgainstKotlin/visibility/ProtectedPackage.txt
T
Alexander Udalov 102f0d3470 Regenerate .txt testData
Add newline to EOF, trim trailing spaces
2014-10-21 00:16:08 +04:00

11 lines
273 B
Plaintext

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