13 lines
216 B
Kotlin
Vendored
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 |