blob: c94f77b02a3b42866508db2ed8ea03f5040e5c36 [file]
// PRE_RESOLVED_PHASE: STATUS
class EmptyC<caret>la<caret_preresolved>ss : 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()
}