blob: 8caca78f99035322e7ad469457f4f2024f12eec8 [file]
class EmptyC<caret>lass : InterfaceWithMembers
interface InterfaceWithMembers : AnotherSuperInterface {
val property: Int
fun functionWithDefaultImplementation(i: Int): Int = i
override fun baseFunction()
override fun baz() {
// default implementation
}
}
interface AnotherSuperInterface {
fun baz()
fun baseFunction()
}