41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
17 lines
220 B
Kotlin
17 lines
220 B
Kotlin
open class Base {
|
|
open fun foo() { }
|
|
}
|
|
|
|
trait Derived : Base {
|
|
override fun foo() {
|
|
super.foo()
|
|
}
|
|
}
|
|
|
|
class DerivedImpl : Derived, Base()
|
|
|
|
fun box(): String {
|
|
DerivedImpl().foo()
|
|
return "OK"
|
|
}
|