Files
kotlin-fork/compiler/testData/diagnostics/tests/override/ParentInheritsManyImplementations.kt
T
2015-05-12 19:43:17 +02:00

18 lines
197 B
Kotlin
Vendored

package d
interface A {
fun foo() = 1
}
interface B {
fun foo() = 2
}
open <!MANY_IMPL_MEMBER_NOT_IMPLEMENTED!>class C<!> : A, B {}
interface E {
fun foo(): Int
}
class D : C() {}