mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 00:21:26 +00:00
14 lines
125 B
Kotlin
Vendored
14 lines
125 B
Kotlin
Vendored
package test
|
|
|
|
interface A {
|
|
fun foo() {}
|
|
|
|
fun bar() {}
|
|
}
|
|
|
|
open class B : A {
|
|
}
|
|
|
|
class C : B() {
|
|
override fun bar() {}
|
|
} |