15 lines
191 B
Kotlin
Vendored
15 lines
191 B
Kotlin
Vendored
interface Z {
|
|
open fun foo(a: Int, b: Int)
|
|
}
|
|
|
|
open class B: A(), Z {
|
|
override fun foo(a: Int, b: Int) {
|
|
|
|
}
|
|
}
|
|
|
|
class C: A() {
|
|
override fun foo(<caret>a: Int, b: Int) {
|
|
|
|
}
|
|
} |