8 lines
115 B
Kotlin
Vendored
8 lines
115 B
Kotlin
Vendored
interface Some {
|
|
fun test()
|
|
}
|
|
|
|
class SomeImpl : Some {
|
|
override fun test() {}
|
|
override fun test() {}
|
|
} |