Files
kotlin-fork/compiler/testData/diagnostics/tests/cyclicHierarchy/javaKotlinJavaCycle.fir.kt
T

18 lines
169 B
Kotlin
Vendored

// FILE: A.java
interface A extends C {
void foo();
}
// FILE: B.kt
interface B : A {
fun bar()
}
// FILE: C.java
interface C extends B {
void baz();
}