Files
kotlin-fork/j2k/testData/multiFile/ProtectedVisibility/InheritorOtherPackage2.kt
T
2016-03-31 14:51:57 +03:00

10 lines
158 B
Kotlin
Vendored

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