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

6 lines
120 B
Kotlin
Vendored

package test
open class BaseOtherPackage protected constructor() {
protected fun foo() {}
protected var i = 1
}