6 lines
79 B
Kotlin
6 lines
79 B
Kotlin
package test
|
|
|
|
public open class E: D() {
|
|
override fun foo(): String = ""
|
|
}
|