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