Files
kotlin-fork/j2k/testData/fileOrElement/class/notUtilityClass.kt
T

11 lines
143 B
Kotlin
Vendored

internal open class Base {
companion object {
val CONSTANT = 10
}
}
internal class Derived : Base() {
fun foo() {
}
}