Files
kotlin-fork/j2k/testData/multiFile/ProtectedVisibility/InheritorOtherPackage1.kt
T

11 lines
129 B
Kotlin
Vendored

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