Files
kotlin-fork/idea/testData/safeDelete/deleteValueParameter/kotlinValueParameterWithJava/mixedHierarchy1.kt
T
2015-05-13 16:13:13 +02:00

15 lines
191 B
Kotlin
Vendored

interface Z {
open fun foo(<caret>a: Int, b: Int)
}
open class B: A(), Z {
override fun foo(a: Int, b: Int) {
}
}
class C: A() {
override fun foo(a: Int, b: Int) {
}
}