Files
kotlin-fork/j2k/testData/multiFile/ProtectedVisibility/InheritorOtherPackage1.kt
T
2017-07-20 01:15:15 +03:00

11 lines
129 B
Kotlin
Vendored

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