Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt302.fir.kt
T

13 lines
216 B
Kotlin
Vendored

// KT-302 Report an error when inheriting many implementations of the same member
package kt302
interface A {
open fun foo() {}
}
interface B {
open fun foo() {}
}
class C : A, B {} //should be error here