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

13 lines
249 B
Plaintext

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