mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
27 lines
276 B
Kotlin
Vendored
27 lines
276 B
Kotlin
Vendored
interface A {
|
|
fun a1()
|
|
fun a2()
|
|
fun a3()
|
|
fun a4()
|
|
fun a5()
|
|
fun a6()
|
|
fun a7()
|
|
fun a8()
|
|
}
|
|
|
|
class <caret>Test : A {
|
|
fun foo() {
|
|
}
|
|
|
|
override fun a3() {
|
|
}
|
|
|
|
fun bar() {
|
|
}
|
|
|
|
override fun a6() {
|
|
}
|
|
|
|
fun baz() {
|
|
}
|
|
} |