9 lines
135 B
Kotlin
Vendored
9 lines
135 B
Kotlin
Vendored
interface Some {
|
|
fun first()
|
|
fun second()
|
|
}
|
|
|
|
class ClassSome: Some {
|
|
override fun first() {}
|
|
override fun second() {}
|
|
} |