Files
kotlin-fork/idea/testData/safeDelete/deleteFunction/kotlinFunction/implement2.kt
T
2015-05-13 16:13:13 +02:00

13 lines
118 B
Kotlin
Vendored

interface A {
fun foo()
}
interface Z {
fun foo()
}
class B: A, Z {
override fun <caret>foo() {
}
}