9b2291d381
Report errors not only when superclasses are MutableClassDescriptorLite, but any classes #KT-2115 Fixed
18 lines
239 B
Kotlin
Vendored
18 lines
239 B
Kotlin
Vendored
// FILE: I.kt
|
|
|
|
open class I : <!CYCLIC_INHERITANCE_HIERARCHY!>K<!>() {
|
|
fun foo() {}
|
|
}
|
|
|
|
// FILE: J.java
|
|
|
|
class J extends I {
|
|
void bar() {}
|
|
}
|
|
|
|
// FILE: K.kt
|
|
|
|
open class K : <!CYCLIC_INHERITANCE_HIERARCHY!>J<!>() {
|
|
fun baz() {}
|
|
}
|