Files
kotlin/compiler/testData/loadJava/javaAgainstKotlin/visibility/PackageLocal.txt
Alexander Udalov 3a8ad45dec Append newline to EOF for .txt test data files
Reverts and fixes 102f0d3
2014-10-21 03:18:27 +04:00

12 lines
256 B
Plaintext
Vendored

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