9 lines
95 B
Kotlin
9 lines
95 B
Kotlin
// C
|
|
|
|
interface Base {
|
|
fun foo(): Any
|
|
}
|
|
|
|
class C : Base {
|
|
override fun foo(): Unit {}
|
|
} |