Files
openide/plugins/kotlin/idea/tests/testData/kotlinAndJavaChecker/javaAgainstKotlin/ExtendClassWithDefaultImplementationComplex.kt
Anna Kozlova fd7607ef38 [kotlin] k2 add tests for java interop
- disabled tests are reported as KT-70426, KT-70427, KT-70428
- call line marker messages in BGT, same as in production

KT-70404

GitOrigin-RevId: 7b368ad384d13b0a04053a3e666a4e43edf7e37c
2024-08-02 18:59:28 +00:00

28 lines
269 B
Kotlin

package test
interface A {
fun a() = Unit
}
open class AI : A
interface B : A {
fun b() = Unit
}
open class BI: B
interface C: B {
fun c() = Unit
}
interface D {
fun d() = Unit
}
interface S {
fun a() = Unit
fun b() = Unit
}
// IGNORE_K2