9b2291d381
Report errors not only when superclasses are MutableClassDescriptorLite, but any classes #KT-2115 Fixed
18 lines
200 B
Kotlin
18 lines
200 B
Kotlin
// FILE: A.java
|
|
|
|
interface A extends C {
|
|
void foo();
|
|
}
|
|
|
|
// FILE: B.kt
|
|
|
|
trait B : <!CYCLIC_INHERITANCE_HIERARCHY!>A<!> {
|
|
fun bar()
|
|
}
|
|
|
|
// FILE: C.java
|
|
|
|
interface C extends B {
|
|
void baz();
|
|
}
|