mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
19 lines
190 B
Kotlin
Vendored
19 lines
190 B
Kotlin
Vendored
open class A {
|
|
fun a(){}
|
|
fun b(){}
|
|
}
|
|
|
|
interface I {
|
|
fun b()
|
|
}
|
|
|
|
abstract class B : A() {
|
|
open fun f(){}
|
|
abstract fun g()
|
|
fun h(){}
|
|
}
|
|
|
|
class C : B(), I {
|
|
<caret>
|
|
}
|