10 lines
162 B
Kotlin
Vendored
10 lines
162 B
Kotlin
Vendored
abstract class A {
|
|
abstract override fun toString(): String
|
|
}
|
|
|
|
interface B
|
|
|
|
abstract class C : A(), B
|
|
|
|
<!ABSTRACT_MEMBER_NOT_IMPLEMENTED!>class Test<!> : C()
|