Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/implementFromClassName6.kt
T

27 lines
297 B
Kotlin
Vendored

interface A {
fun a1()
fun a2()
fun a3()
fun a4()
fun a5()
fun a6()
fun a7()
fun a8()
}
interface B {
fun b3()
fun b2()
fun b1()
}
class <caret>Test : A, B {
override fun a3() {
}
override fun b2() {
}
override fun a6() {
}
}