blob: 28386714dfe0cb0f99646aee2ed43f2fef9bf577 [file]
class Empty<caret>Class : InterfaceWithMembers {
override val property: Int = 4
override fun baseFunction() {}
}
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()
}