Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/superPreference.kt
T
2021-05-07 00:40:41 +03:00

23 lines
226 B
Kotlin
Vendored

// FIR_IDENTICAL
abstract class A : I1 {
open fun a(){}
}
interface I1 {
fun i1()
fun i()
}
interface I2 {
fun i2()
fun a()
}
interface I3 {
fun i()
}
abstract class B : I2, A(), I3 {
<caret>
}