Files
kotlin-fork/j2k/testData/fileOrElement/class/notUtilityClass.new.kt
T
2019-04-03 11:21:19 +03:00

9 lines
143 B
Kotlin
Vendored

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