mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
- 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
28 lines
269 B
Kotlin
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 |