Files
kotlin-fork/nj2k/testData/multiFile/ProtectedVisibility/InheritorOtherPackage2.kt
T
2019-10-12 12:50:34 +03:00

10 lines
168 B
Kotlin
Vendored

package test2
import test.BaseOtherPackage
class DerivedOtherPackage protected constructor() : BaseOtherPackage() {
init {
foo()
val i = i
}
}