9 lines
143 B
Kotlin
Vendored
9 lines
143 B
Kotlin
Vendored
internal open class Base {
|
|
companion object {
|
|
const val CONSTANT = 10
|
|
}
|
|
}
|
|
|
|
internal class Derived : Base() {
|
|
fun foo() {}
|
|
} |