2841931ffa
#KT-10828 Fixed
9 lines
137 B
Kotlin
Vendored
9 lines
137 B
Kotlin
Vendored
internal open class Base {
|
|
companion object {
|
|
val CONSTANT = 10
|
|
}
|
|
}
|
|
|
|
internal class Derived : Base() {
|
|
fun foo() {}
|
|
} |