Files
kotlin-fork/compiler/testData/diagnostics/tests/cyclicHierarchy/kotlinJavaCycle.kt
T
Alexander Udalov 9b2291d381 Fix StackOverflowError on cyclic hierarchy Java<->Kotlin
Report errors not only when superclasses are MutableClassDescriptorLite, but
any classes

 #KT-2115 Fixed
2014-04-03 19:04:12 +04:00

12 lines
143 B
Kotlin
Vendored

// FILE: J.java
class J extends K {
void foo() {}
}
// FILE: K.kt
class K : <!CYCLIC_INHERITANCE_HIERARCHY!>J<!>() {
fun bar() {}
}